From 552a5ae4b502c373ae516e16a8a756e659e7c7bb Mon Sep 17 00:00:00 2001 From: sin Date: Wed, 12 Mar 2014 16:29:11 +0200 Subject: [PATCH] Don't prefix messages with the tool name by default --- util/eprintf.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/util/eprintf.c b/util/eprintf.c index bd4e090..f3cac7b 100644 --- a/util/eprintf.c +++ b/util/eprintf.c @@ -50,7 +50,9 @@ weprintf(const char *fmt, ...) { va_list ap; +#if 0 fprintf(stderr, "%s: ", argv0); +#endif va_start(ap, fmt); vfprintf(stderr, fmt, ap);