commit 58567b6c58b43edfe1a2f9496eac1d422e1df8ca
parent 27f4f1762649b961df5d781cab31c6a4cc33f402
Author: sin <sin@2f30.org>
Date: Wed, 11 Dec 2013 12:09:27 +0000
Print the program name as well
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);