|
@@ -393,6 +393,11 @@ int main(int argc, char *argv[])
|
|
|
strcat(command, opt17->answer);
|
|
|
}
|
|
|
|
|
|
+#ifdef __MINGW32__
|
|
|
+ /* quoting seems to be greedy, so hack to make sure string doesn't end with \" */
|
|
|
+ strcat(command, " ");
|
|
|
+#endif
|
|
|
+
|
|
|
G_debug(1, "Mode: %s", flag_seg->answer ? "Segmented" : "All in RAM");
|
|
|
G_debug(1, "Running: %s", command);
|
|
|
|