summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/wait.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/wait.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/wait.cc')
-rw-r--r--winsup/cygwin/wait.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/wait.cc b/winsup/cygwin/wait.cc
index 4fa53bac6..7d1f13a53 100644
--- a/winsup/cygwin/wait.cc
+++ b/winsup/cygwin/wait.cc
@@ -117,6 +117,6 @@ wait4 (int intpid, int *status, int options, struct rusage *r)
intpid, status, w->status, options, res);
w->status = -1;
if (res < 0)
- sigproc_printf ("*** errno = %d", get_errno ());
+ sigproc_printf ("*** errno %d", get_errno ());
return res;
}