Don't prefix messages with the tool name by default

This commit is contained in:
sin 2014-03-12 16:29:11 +02:00
parent 6506e85d13
commit 552a5ae4b5

View File

@ -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);