diff options
Diffstat (limited to 'src/test/tinytest.c')
-rw-r--r-- | src/test/tinytest.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/tinytest.c b/src/test/tinytest.c index b358bb3a4d..b453308121 100644 --- a/src/test/tinytest.c +++ b/src/test/tinytest.c @@ -111,7 +111,7 @@ _testcase_run_forked(const struct testgroup_t *group, */ int ok; char buffer[LONGEST_TEST_NAME+256]; - STARTUPINFO si; + STARTUPINFOA si; PROCESS_INFORMATION info; DWORD exitcode; @@ -130,7 +130,7 @@ _testcase_run_forked(const struct testgroup_t *group, memset(&info, 0, sizeof(info)); si.cb = sizeof(si); - ok = CreateProcess(commandname, buffer, NULL, NULL, 0, + ok = CreateProcessA(commandname, buffer, NULL, NULL, 0, 0, NULL, NULL, &si, &info); if (!ok) { printf("CreateProcess failed!\n"); |