[Box Backup-commit] COMMIT r1984 - box/chris/general/lib/common

boxbackup-dev at fluffy.co.uk boxbackup-dev at fluffy.co.uk
Sun Dec 9 01:38:06 GMT 2007


Author: chris
Date: 2007-12-09 01:38:05 +0000 (Sun, 09 Dec 2007)
New Revision: 1984

Modified:
   box/chris/general/lib/common/Logging.h
Log:
Revert to decimal properly, and also after logging an Object ID.
(merges [1869] [1870])


Modified: box/chris/general/lib/common/Logging.h
===================================================================
--- box/chris/general/lib/common/Logging.h	2007-12-09 01:36:12 UTC (rev 1983)
+++ box/chris/general/lib/common/Logging.h	2007-12-09 01:38:05 UTC (rev 1984)
@@ -47,13 +47,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
 




More information about the Boxbackup-commit mailing list