ubase

suckless linux base utils
git clone git://git.2f30.org/ubase
Log | Files | Refs | README | LICENSE

commit 82c99b16a75f5dc66544c297dbbdaf39942b95fe
parent 21e708abd4c9ce6817cad762a171320005d62b53
Author: sin <sin@2f30.org>
Date:   Fri, 28 Mar 2014 15:56:28 +0000

Be consistent and use #ifdef instead of #if

Diffstat:
Mutil/eprintf.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/util/eprintf.c b/util/eprintf.c @@ -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