[sword-svn] r3193 - trunk/utilities

chrislit at crosswire.org chrislit at crosswire.org
Sun Apr 20 02:43:10 MST 2014


Author: chrislit
Date: 2014-04-20 02:43:09 -0700 (Sun, 20 Apr 2014)
New Revision: 3193

Modified:
   trunk/utilities/imp2vs.cpp
Log:
fixed assignment for equality error


Modified: trunk/utilities/imp2vs.cpp
===================================================================
--- trunk/utilities/imp2vs.cpp	2014-04-19 17:26:34 UTC (rev 3192)
+++ trunk/utilities/imp2vs.cpp	2014-04-20 09:43:09 UTC (rev 3193)
@@ -173,7 +173,7 @@
 		usage(*argv, "ERROR: SWORD library not compiled with bzip2 compression support.\n\tBe sure libbz2 is available when compiling SWORD library");
 #endif
 	}
-	else if (compType = "XZ") {
+	else if (compType == "XZ") {
 #ifndef EXCLUDEXZ
 		compressor = new XzCompress();
 #else




More information about the sword-cvs mailing list