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); ZeroMemory(s2, x);
sprintf( sprintf(
s2, s2,
"%s \"%s%s%s\"", "%s %s%s%s",
modulepath, modulepath,
s1, s1,
s3, s3,
cmdstring); cmdstring);
sprintf( sprintf(
s2, s2,
"%s \"%s\"", "%s %s",
modulepath, modulepath,
cmdstring); cmdstring);
} }