From a2e12d0c37d7d66de410a47fbc930c6158dbf55d Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Mon, 7 Jan 2002 22:18:36 +0000 Subject: [PATCH] * sigproc.cc (getsem): Clean up debugging output. --- winsup/cygwin/ChangeLog | 4 ++++ winsup/cygwin/sigproc.cc | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 1c2187c0b..6ae86d345 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,7 @@ +2002-01-07 Christopher Faylor + + * sigproc.cc (getsem): Clean up debugging output. + 2002-01-07 Christopher Faylor * sigproc.cc (getsem): Set errno when unable to create own semaphore. diff --git a/winsup/cygwin/sigproc.cc b/winsup/cygwin/sigproc.cc index 36b563e1c..159c3bd69 100644 --- a/winsup/cygwin/sigproc.cc +++ b/winsup/cygwin/sigproc.cc @@ -944,7 +944,7 @@ getsem (_pinfo *p, const char *str, int init, int max) p = myself; if (!h) { - system_printf ("can't %s %s, %E", p ? "open" : "create", str); + system_printf ("can't create semaphore %s, %E", str); __seterrno (); } }