Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2012-12-27 21:25:17 +0400
committerChristopher Faylor <me@cgf.cx>2012-12-27 21:25:17 +0400
commit81f18683364bdd83dcf74f57dee24599d86ae4f3 (patch)
tree70b99aaf8bcb72a245a4dbff082b72dd0186a547 /winsup/cygwin/fork.cc
parentdbadcc4372f8d7c3d776a8332707e2a75b9e5cd0 (diff)
* fork.cc (child_info::prefork): Fix error message formatting.
Diffstat (limited to 'winsup/cygwin/fork.cc')
-rw-r--r--winsup/cygwin/fork.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/fork.cc b/winsup/cygwin/fork.cc
index 22076fc1d..cd6c6914c 100644
--- a/winsup/cygwin/fork.cc
+++ b/winsup/cygwin/fork.cc
@@ -117,7 +117,7 @@ child_info::prefork (bool detached)
if (!detached)
{
if (!CreatePipe (&rd_proc_pipe, &wr_proc_pipe, &sec_none_nih, 16))
- api_fatal ("prefork: couldn't create pipe process tracker%E");
+ api_fatal ("prefork: couldn't create pipe process tracker, %E");
if (!SetHandleInformation (wr_proc_pipe, HANDLE_FLAG_INHERIT,
HANDLE_FLAG_INHERIT))