[sword-svn] r3322 - trunk/utilities
greg.hellings at crosswire.org
greg.hellings at crosswire.org
Mon Feb 16 14:27:19 MST 2015
Author: greg.hellings
Date: 2015-02-16 14:27:19 -0700 (Mon, 16 Feb 2015)
New Revision: 3322
Modified:
trunk/utilities/osis2mod.cpp
Log:
Correct casing of COUT
Modified: trunk/utilities/osis2mod.cpp
===================================================================
--- trunk/utilities/osis2mod.cpp 2015-02-16 18:59:13 UTC (rev 3321)
+++ trunk/utilities/osis2mod.cpp 2015-02-16 21:27:19 UTC (rev 3322)
@@ -1599,8 +1599,8 @@
}
else {
switch (curChar) {
- case '>' : COUT << "WARNING(PARSE): > should be >" << endl; text.append(">"); break;
- case '<' : COUT << "WARNING(PARSE): < should be <" << endl; text.append("<"); break;
+ case '>' : cout << "WARNING(PARSE): > should be >" << endl; text.append(">"); break;
+ case '<' : cout << "WARNING(PARSE): < should be <" << endl; text.append("<"); break;
default : text.append((char) curChar); break;
}
}
More information about the sword-cvs
mailing list