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:
Pierre Beyssac 2002-03-26 17:37:59 +00:00
parent 5d4e6c0c05
commit 85554bf8ff
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=93233
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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;