summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2003-05-09 03:37:18 +0000
committerNick Mathewson <nickm@torproject.org>2003-05-09 03:37:18 +0000
commitfb435daa2838393a27b678c43d5255b457bd7ecd (patch)
treedc681064fb240e22e2a43c3e913e1da4fe1ac69d /src/common
parent48b0c839b52e92facffadecca68c2733c34b775b (diff)
downloadtor-fb435daa2838393a27b678c43d5255b457bd7ecd.tar.gz
tor-fb435daa2838393a27b678c43d5255b457bd7ecd.zip
Fix build on linux; macos is still messed up
svn:r290
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 f751484a77..fd081315c0 100644
--- a/src/common/log.h
+++ b/src/common/log.h
@@ -8,6 +8,9 @@
/*
* Changes :
* $Log$
+ * Revision 1.4 2003/05/09 03:37:18 nickm
+ * Fix build on linux; macos is still messed up
+ *
* Revision 1.3 2003/05/09 02:41:27 nickm
* One is the language; the other is the compiler
*
@@ -44,7 +47,7 @@ void log(int severity, const char *format, ...);
#ifdef __GNUC__
#define log_fn(severity, format, args...) \
- log((severity), __PRETTY_FUNCTION__ # "(): " # format, ##args)
+ log((severity), __PRETTY_FUNCTION__ "(): " # format , ##args)
#else
#define log_fn log
#endif