Fix style bug.

This commit is contained in:
Dima Dorfman 2001-08-21 18:46:33 +00:00
parent 91a4536f22
commit f7bec57b78

View file

@ -14,5 +14,5 @@ setprogname(const char *progname)
const char *p;
p = strrchr(progname, '/');
__progname = p ? p + 1 : progname;
__progname = p != NULL ? p + 1 : progname;
}