From 40ba4982d1e3093907ed22d2d394cccef851aa19 Mon Sep 17 00:00:00 2001 From: Sebastian Dransfeld Date: Sun, 26 Oct 2008 20:49:55 +0000 Subject: [PATCH] No need to use fprintf to print a simple string. SVN revision: 37175 --- src/bin/e_alert.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_alert.c b/src/bin/e_alert.c index eceb06e15..f8df0a74a 100644 --- a/src/bin/e_alert.c +++ b/src/bin/e_alert.c @@ -100,7 +100,7 @@ e_alert_show(const char *text) if ((!dd) || (!fs)) { - fprintf(stderr, text); + fputs(text, stderr); fflush(stderr); exit(-1); }