[Xmlstorage-commits] SF.net SVN: xmlstorage: [91] trunk/c++/xs-native.cpp
Brought to you by:
martinfuchs
From: <mar...@us...> - 2008-05-01 21:39:09
|
Revision: 91 http://xmlstorage.svn.sourceforge.net/xmlstorage/?rev=91&view=rev Author: martinfuchs Date: 2008-05-01 14:39:07 -0700 (Thu, 01 May 2008) Log Message: ----------- add brace Modified Paths: -------------- trunk/c++/xs-native.cpp Modified: trunk/c++/xs-native.cpp =================================================================== --- trunk/c++/xs-native.cpp 2008-03-31 11:16:06 UTC (rev 90) +++ trunk/c++/xs-native.cpp 2008-05-01 21:39:07 UTC (rev 91) @@ -356,7 +356,7 @@ // read white space for(;;) { // check for the encoding of the first line end - if (!_endl_defined) + if (!_endl_defined) { if (c == '\n') { _format._endl = "\n"; _endl_defined = true; @@ -364,6 +364,7 @@ _format._endl = "\r\n"; _endl_defined = true; } + } c = get(); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |