mirror of git://git.suckless.org/ubase
Be consistent and use #ifdef instead of #if
This commit is contained in:
parent
21e708abd4
commit
82c99b16a7
|
@ -33,7 +33,7 @@ enprintf(int status, const char *fmt, ...)
|
||||||
void
|
void
|
||||||
venprintf(int status, const char *fmt, va_list ap)
|
venprintf(int status, const char *fmt, va_list ap)
|
||||||
{
|
{
|
||||||
#if DEBUG
|
#ifdef DEBUG
|
||||||
fprintf(stderr, "%s: ", argv0);
|
fprintf(stderr, "%s: ", argv0);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue