* fork.cc (child_info::prefork): Fix error message formatting.
This commit is contained in:
parent
dbadcc4372
commit
81f1868336
|
@ -1,3 +1,7 @@
|
|||
2012-12-27 Christopher Faylor <me.cygwin2012@cgf.cx>
|
||||
|
||||
* fork.cc (child_info::prefork): Fix error message formatting.
|
||||
|
||||
2012-12-22 Christopher Faylor <me.cygwin2012@cgf.cx>
|
||||
|
||||
* select.h (select_stuff): Remove variable names from parameter
|
||||
|
|
|
@ -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))
|
||||
|
|
Loading…
Reference in New Issue