summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2007-10-08 23:52:51 +0000
committerChris Wilson <chris+github@qwirx.com>2007-10-08 23:52:51 +0000
commitea478917852f3052bc8cfbb3e76fcdd48c1bfe75 (patch)
treef17acaeea34d84883e34e0ac62bf18e3fca57fca
parent6a06e892f8e8686bff16d16320d7aee009a6f374 (diff)
Fix double backslashes
-rw-r--r--lib/common/Logging.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/common/Logging.h b/lib/common/Logging.h
index 155c0891..bdc9e8ab 100644
--- a/lib/common/Logging.h
+++ b/lib/common/Logging.h
@@ -49,13 +49,13 @@
std::internal << \
std::setw(10) << \
std::setfill('0') << \
- (accno) << \\
+ (accno) << \
std::dec
#define BOX_FORMAT_OBJECTID(objectid) \
std::hex << \
std::showbase << \
- (objectid) << \\
+ (objectid) << \
std::dec
#undef ERROR