From 81f18683364bdd83dcf74f57dee24599d86ae4f3 Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Thu, 27 Dec 2012 17:25:17 +0000 Subject: [PATCH] * fork.cc (child_info::prefork): Fix error message formatting. --- winsup/cygwin/ChangeLog | 4 ++++ winsup/cygwin/fork.cc | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 04e49789c..4cfece717 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,7 @@ +2012-12-27 Christopher Faylor + + * fork.cc (child_info::prefork): Fix error message formatting. + 2012-12-22 Christopher Faylor * select.h (select_stuff): Remove variable names from parameter 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))