No need to use fprintf to print a simple string.

SVN revision: 37175
This commit is contained in:
Sebastian Dransfeld 2008-10-26 20:49:55 +00:00
parent 871999bfd3
commit 40ba4982d1
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ e_alert_show(const char *text)
if ((!dd) || (!fs))
{
fprintf(stderr, text);
fputs(text, stderr);
fflush(stderr);
exit(-1);
}