commit 1de3e6c679a608aa07dfc2d3b419045697879572
parent adc7ff7d04fff043c814d50a097633e9640e9550
Author: sin <sin@2f30.org>
Date: Mon, 10 Feb 2014 12:32:40 +0000
Always print the program name
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/util/eprintf.c b/util/eprintf.c
@@ -33,7 +33,7 @@ enprintf(int status, const char *fmt, ...)
void
venprintf(int status, const char *fmt, va_list ap)
{
- /*fprintf(stderr, "%s: ", argv0);*/
+ fprintf(stderr, "%s: ", argv0);
vfprintf(stderr, fmt, ap);