diff --git a/util/eprintf.c b/util/eprintf.c index f3cac7b..9ca6209 100644 --- a/util/eprintf.c +++ b/util/eprintf.c @@ -33,7 +33,9 @@ enprintf(int status, const char *fmt, ...) void venprintf(int status, const char *fmt, va_list ap) { +#if DEBUG fprintf(stderr, "%s: ", argv0); +#endif vfprintf(stderr, fmt, ap); @@ -50,7 +52,7 @@ weprintf(const char *fmt, ...) { va_list ap; -#if 0 +#ifdef DEBUG fprintf(stderr, "%s: ", argv0); #endif