mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
Test and tweak mingw ... the process name should not have spaces escaped,
only the arguments list. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@20716 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
d8bdc233fb
commit
437222b0e1
1 changed files with 1 additions and 1 deletions
|
@ -4569,7 +4569,7 @@ printf(
|
|||
}
|
||||
a[argc] = "-f";
|
||||
a[argc+1] = 0;
|
||||
if (_spawnv(_P_NOWAIT, a[0], a) == -1)
|
||||
if (_spawnv(_P_NOWAIT, argv[0], a) == -1)
|
||||
{
|
||||
fprintf(stderr, "gdomap - spawn '%s' failed - bye.\n", argv[0]);
|
||||
exit(EXIT_FAILURE);
|
||||
|
|
Loading…
Reference in a new issue