You are viewing a plain text version of this content. The canonical link for it is here.
Posted to log4cxx-dev@logging.apache.org by ca...@apache.org on 2008/01/20 02:42:04 UTC

svn commit: r613496 - in /logging/log4cxx/trunk/src/main/cpp: systemerrwriter.cpp systemoutwriter.cpp

Author: carnold
Date: Sat Jan 19 17:42:03 2008
New Revision: 613496

URL: http://svn.apache.org/viewvc?rev=613496&view=rev
Log:
LOGCXX-126: Missing semi-colon

Modified:
    logging/log4cxx/trunk/src/main/cpp/systemerrwriter.cpp
    logging/log4cxx/trunk/src/main/cpp/systemoutwriter.cpp

Modified: logging/log4cxx/trunk/src/main/cpp/systemerrwriter.cpp
URL: http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/cpp/systemerrwriter.cpp?rev=613496&r1=613495&r2=613496&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/cpp/systemerrwriter.cpp (original)
+++ logging/log4cxx/trunk/src/main/cpp/systemerrwriter.cpp Sat Jan 19 17:42:03 2008
@@ -52,7 +52,7 @@
 #elif LOG4CXX_FORCE_BYTE_CONSOLE
 	return false;
 #else
-	return fwide(stderr, 0) > 0
+	return fwide(stderr, 0) > 0;
 #endif
 }
 

Modified: logging/log4cxx/trunk/src/main/cpp/systemoutwriter.cpp
URL: http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/cpp/systemoutwriter.cpp?rev=613496&r1=613495&r2=613496&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/cpp/systemoutwriter.cpp (original)
+++ logging/log4cxx/trunk/src/main/cpp/systemoutwriter.cpp Sat Jan 19 17:42:03 2008
@@ -53,7 +53,7 @@
 #elif LOG4CXX_FORCE_BYTE_CONSOLE
 	return false;
 #else
-	return fwide(f, 0) > 0
+	return fwide(stdout, 0) > 0;
 #endif
 }