summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2007-10-08 23:33:24 +0000
committerChris Wilson <chris+github@qwirx.com>2007-10-08 23:33:24 +0000
commit6a06e892f8e8686bff16d16320d7aee009a6f374 (patch)
tree15d6a7d25d06fea6dd75858eca72bc68c6dea45b /lib
parenta932318b71f0fc2826fe14e677eaed51303bb0a3 (diff)
Revert to decimal properly, and also after logging an Object ID.
Diffstat (limited to 'lib')
-rw-r--r--lib/common/Logging.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/common/Logging.h b/lib/common/Logging.h
index 55728c6b..155c0891 100644
--- a/lib/common/Logging.h
+++ b/lib/common/Logging.h
@@ -49,13 +49,14 @@
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