[sword-svn] r2170 - trunk/src/modules/filters

scribe at www.crosswire.org scribe at www.crosswire.org
Sat May 17 20:38:06 MST 2008


Author: scribe
Date: 2008-05-17 20:38:05 -0700 (Sat, 17 May 2008)
New Revision: 2170

Modified:
   trunk/src/modules/filters/utf8greekaccents.cpp
Log:
one more fix for warnings from g++4.3


Modified: trunk/src/modules/filters/utf8greekaccents.cpp
===================================================================
--- trunk/src/modules/filters/utf8greekaccents.cpp	2008-05-18 02:50:53 UTC (rev 2169)
+++ trunk/src/modules/filters/utf8greekaccents.cpp	2008-05-18 03:38:05 UTC (rev 2170)
@@ -170,7 +170,7 @@
 				from+=2;
 			}
 			//capital omicron
-			else if (*from == 0xE1 && (((*(from + 1) == 0xBD && *(from + 2) >= 0x88 && *(from + 2) <= 0x8D)) || ((*(from + 1) == 0xBF && *(from + 2) == 0xB8 || *(from + 2) == 0xB9)))) {
+			else if (*from == 0xE1 && (((*(from + 1) == 0xBD && *(from + 2) >= 0x88 && *(from + 2) <= 0x8D)) || ((*(from + 1) == 0xBF && (*(from + 2) == 0xB8 || *(from + 2) == 0xB9))))) {
 				text += 0xCE;
 				text += 0x9F;
 				from+=2;




More information about the sword-cvs mailing list