summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/init.cc
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2004-09-03 01:53:12 +0000
committerChristopher Faylor <me@cgf.cx>2004-09-03 01:53:12 +0000
commit0cd9f74fa5f16ff9573ae52a01296b90b02a9324 (patch)
tree5eefd8af91f99ee4a81ed759f1ef0f52b7bbfd3b /winsup/cygwin/init.cc
parent6644c628f58d55c3dd1176d5800adbdbac08a296 (diff)
downloadcygnal-0cd9f74fa5f16ff9573ae52a01296b90b02a9324.tar.gz
cygnal-0cd9f74fa5f16ff9573ae52a01296b90b02a9324.tar.bz2
cygnal-0cd9f74fa5f16ff9573ae52a01296b90b02a9324.zip
Regularize most strace_prints throughout so that %E is always preceded by a
comma and elminate most uses of "foo = %s" to "foo %s".
Diffstat (limited to 'winsup/cygwin/init.cc')
-rw-r--r--winsup/cygwin/init.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/init.cc b/winsup/cygwin/init.cc
index c1e98a8a6..d0842a7ed 100644
--- a/winsup/cygwin/init.cc
+++ b/winsup/cygwin/init.cc
@@ -97,10 +97,10 @@ respawn_wow64_process ()
CREATE_DEFAULT_ERROR_MODE
| GetPriorityClass (GetCurrentProcess ()),
NULL, NULL, &si, &pi))
- api_fatal ("Failed to create process <%s>: %E", GetCommandLineA ());
+ api_fatal ("Failed to create process <%s>, %E", GetCommandLineA ());
CloseHandle (pi.hThread);
if (WaitForSingleObject (pi.hProcess, INFINITE) == WAIT_FAILED)
- api_fatal ("Waiting for process %d failed: %E", pi.dwProcessId);
+ api_fatal ("Waiting for process %d failed, %E", pi.dwProcessId);
CloseHandle (pi.hProcess);
ExitProcess (0);
}