Fix grouping of arguments on Windows 98

This commit is contained in:
Ken Martin 2002-10-01 13:04:48 -04:00
parent 789cc71855
commit 4045066f01

View File

@ -164,14 +164,14 @@ static BOOL RealPopenCreateProcess(const char *cmdstring,
ZeroMemory(s2, x);
sprintf(
s2,
"%s \"%s%s%s\"",
"%s %s%s%s",
modulepath,
s1,
s3,
cmdstring);
sprintf(
s2,
"%s \"%s\"",
"%s %s",
modulepath,
cmdstring);
}