[sword-svn] r2778 - trunk/utilities
scribe at crosswire.org
scribe at crosswire.org
Sat Jan 26 08:21:20 MST 2013
Author: scribe
Date: 2013-01-26 08:21:20 -0700 (Sat, 26 Jan 2013)
New Revision: 2778
Modified:
trunk/utilities/tei2mod.cpp
Log:
Fixed = -> == operator for LZSS compression type (Jaak Ristioja)
Modified: trunk/utilities/tei2mod.cpp
===================================================================
--- trunk/utilities/tei2mod.cpp 2013-01-25 18:04:31 UTC (rev 2777)
+++ trunk/utilities/tei2mod.cpp 2013-01-26 15:21:20 UTC (rev 2778)
@@ -429,7 +429,7 @@
usage(*argv, "ERROR: SWORD library not compiled with ZIP compression support.\n\tBe sure libzip is available when compiling SWORD library");
#endif
}
- else if (compType = "LZSS") {
+ else if (compType == "LZSS") {
compressor = new LZSSCompress();
}
More information about the sword-cvs
mailing list