*fd = -1;
if (error_string == NULL)
error_string = _("Cannot create a temporary file");
- O (fatal, NILF, error_string);
+ OS (fatal, NILF, "%s", error_string);
/* not reached */
return NULL;
sprintf (errmsg,
_("%s: Interrupt/Exception caught (code = 0x%lx, addr = 0x%p)\n"),
prg, exrec->ExceptionCode, exrec->ExceptionAddress);
- fprintf (stderr, errmsg);
+ fputs (errmsg, stderr);
exit (255);
}
#endif
/* Write the error to stderr too */
- fprintf (stderr, errmsg);
+ fputs (errmsg, stderr);
#ifdef DEBUG
return EXCEPTION_CONTINUE_SEARCH;
* Special code for winsock error handling.
*/
if (ercode > WSABASEERR) {
- O (fatal, NILF, szMessageBuffer);
+ OS (fatal, NILF, "%s", szMessageBuffer);
}
/*