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

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


Author: chris
Date: 2007-10-09 00:52:51 +0100 (Tue, 09 Oct 2007)
New Revision: 1870

Modified:
   box/trunk/lib/common/Logging.h
Log:
Fix double backslashes


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




More information about the Boxbackup-commit mailing list