[Box Backup-commit] COMMIT r1869 - box/trunk/lib/common

boxbackup-dev at fluffy.co.uk boxbackup-dev at fluffy.co.uk
Tue Oct 9 00:33:24 BST 2007


Author: chris
Date: 2007-10-09 00:33:24 +0100 (Tue, 09 Oct 2007)
New Revision: 1869

Modified:
   box/trunk/lib/common/Logging.h
Log:
Revert to decimal properly, and also after logging an Object ID.


Modified: box/trunk/lib/common/Logging.h
===================================================================
--- box/trunk/lib/common/Logging.h	2007-10-08 23:27:40 UTC (rev 1868)
+++ box/trunk/lib/common/Logging.h	2007-10-08 23:33:24 UTC (rev 1869)
@@ -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
 




More information about the Boxbackup-commit mailing list