summaryrefslogtreecommitdiffstats
path: root/vespalog
diff options
context:
space:
mode:
Diffstat (limited to 'vespalog')
-rw-r--r--vespalog/src/vespa/log/log.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/vespalog/src/vespa/log/log.h b/vespalog/src/vespa/log/log.h
index 20a4b425d72..4bb13f7d791 100644
--- a/vespalog/src/vespa/log/log.h
+++ b/vespalog/src/vespa/log/log.h
@@ -25,7 +25,7 @@ static ns_log::Logger logger(__VA_ARGS__)
static ns_log::Logger *logger=NULL; \
static bool logInitialised = false; \
static const char *logName = x; \
-static const char *rcsId = id
+static const char *indirectRcsId = id
#define LOG_RCSID(x) \
@@ -55,7 +55,7 @@ do { \
if (!logInitialised) { \
logInitialised = true; \
logger = static_cast<Logger *>(malloc(sizeof *logger)); \
- new (logger) Logger(logName, rcsId); \
+ new (logger) Logger(logName, indirectRcsId); \
}
#define LOG_INDIRECT(level, ...) \
do { \