From 09c6a0e6e1a35cf4e3ef99391fb5f56db3384ae9 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Fri, 9 May 2003 02:41:27 +0000 Subject: [PATCH] One is the language; the other is the compiler svn:r289 --- trunk/src/common/log.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/trunk/src/common/log.h b/trunk/src/common/log.h index 7e24ae0a15..f751484a77 100644 --- a/trunk/src/common/log.h +++ b/trunk/src/common/log.h @@ -8,6 +8,9 @@ /* * Changes : * $Log$ + * Revision 1.3 2003/05/09 02:41:27 nickm + * One is the language; the other is the compiler + * * Revision 1.2 2003/05/09 02:25:37 nickm * work on versioning; new log_fn function * @@ -39,7 +42,7 @@ /* Outputs a message to stdout and also logs the same message using syslog. */ void log(int severity, const char *format, ...); -#ifdef __GNUCC__ +#ifdef __GNUC__ #define log_fn(severity, format, args...) \ log((severity), __PRETTY_FUNCTION__ # "(): " # format, ##args) #else