mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
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
2 changed files with 2 additions and 2 deletions
|
|
@ -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 a new issue