aboutsummaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2003-05-09 02:41:27 +0000
committerNick Mathewson <nickm@torproject.org>2003-05-09 02:41:27 +0000
commit48b0c839b52e92facffadecca68c2733c34b775b (patch)
treee2f5b292d65e1844c5b41138ce72761b56daad2b /src/common
parent0957ffeb832ea62808fed314273823bd50ce06c3 (diff)
downloadtor-48b0c839b52e92facffadecca68c2733c34b775b.tar
tor-48b0c839b52e92facffadecca68c2733c34b775b.tar.gz
One is the language; the other is the compiler
svn:r289
Diffstat (limited to 'src/common')
-rw-r--r--src/common/log.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/common/log.h b/src/common/log.h
index 7e24ae0a1..f751484a7 100644
--- a/src/common/log.h
+++ b/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