Be consistent and use #ifdef instead of #if

This commit is contained in:
sin 2014-03-28 15:56:28 +00:00
parent 21e708abd4
commit 82c99b16a7
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ enprintf(int status, const char *fmt, ...)
void
venprintf(int status, const char *fmt, va_list ap)
{
#if DEBUG
#ifdef DEBUG
fprintf(stderr, "%s: ", argv0);
#endif