| 290 | // |
| 291 | |
| 292 | static int error( ctl* control, SSHORT offset, const TEXT* string, int arg) |
| 293 | { |
| 294 | |
| 295 | print_line(control, offset); |
| 296 | sprintf(control->ctl_ptr, string, arg); |
| 297 | fprintf(stderr, "%s", control->ctl_ptr); |
| 298 | ADVANCE_PTR(control->ctl_ptr); |
| 299 | print_line(control, offset); |
| 300 | |
| 301 | return -1; |
| 302 | } |
| 303 | |
| 304 | |
| 305 | //____________________________________________________________ |
no test coverage detected