Fix problem in macro definition breaking compiles with -DDEBUG.
PR: bin/35773 Submitted by: Thomas Quinot <thomas@cuivre.fr.eu.org>
This commit is contained in:
parent
5d4e6c0c05
commit
85554bf8ff
@ -75,7 +75,7 @@ static const char rcsid[] =
|
||||
|
||||
/* Global defs */
|
||||
#ifdef DEBUG
|
||||
#define syslog(e, s) fprintf(stderr,(s))
|
||||
#define syslog(e, s...) fprintf(stderr,s)
|
||||
int debug = 1;
|
||||
#else
|
||||
int debug = 0;
|
||||
|
@ -75,7 +75,7 @@ static const char rcsid[] =
|
||||
|
||||
/* Global defs */
|
||||
#ifdef DEBUG
|
||||
#define syslog(e, s) fprintf(stderr,(s))
|
||||
#define syslog(e, s...) fprintf(stderr,s)
|
||||
int debug = 1;
|
||||
#else
|
||||
int debug = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user