fixed uncompressCmd file location for Win32.
[swftools.git] / pdf2swf / xpdf / Stream.cc
index 6bc1c6e..c47c5af 100644 (file)
@@ -1044,7 +1044,11 @@ void LZWStream::reset() {
   fclose(f);
 
   //----- execute uncompress / gzip
+#ifdef WIN32
+  zCmd = new GString("c:\\swftools\\gzip.exe");
+#else
   zCmd = new GString(uncompressCmd);
+#endif
   zCmd->append(' ');
   zCmd->append(zName);
 #if defined(MACOS)