verr: Remove special "usage" case

In function verr, remove special case for "usage"
string

Co-authored-by: drkhsh <me@drkhsh.at>
Signed-off-by: drkhsh <me@drkhsh.at>
This commit is contained in:
planet36 2021-03-05 14:20:29 -05:00 committed by drkhsh
parent e22d447684
commit 0e2ff8dc10
1 changed files with 0 additions and 3 deletions

3
util.c
View File

@ -13,9 +13,6 @@ char *argv0;
static void
verr(const char *fmt, va_list ap)
{
if (argv0 && strncmp(fmt, "usage", sizeof("usage") - 1))
fprintf(stderr, "%s: ", argv0);
vfprintf(stderr, fmt, ap);
if (fmt[0] && fmt[strlen(fmt) - 1] == ':') {