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>2002-09-30 08:26:52 +0400
committerChristopher Faylor <me@cgf.cx>2002-09-30 08:26:52 +0400
commite7733defb9f32df605532b6dfa028f96810a3447 (patch)
tree0695b95baaed754930f6b7c47c9f28959602b61a /winsup/cygwin/thread.cc
parentf789fbbf355ef6fcec036806fed6948b47d04320 (diff)
* exceptions.cc (unused_sig_wrapper): Accommodate newer compilers.
Diffstat (limited to 'winsup/cygwin/thread.cc')
-rw-r--r--winsup/cygwin/thread.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/thread.cc b/winsup/cygwin/thread.cc
index 0f27ef3d4..6411cdbd6 100644
--- a/winsup/cygwin/thread.cc
+++ b/winsup/cygwin/thread.cc
@@ -2225,7 +2225,7 @@ pthread_mutex::init (pthread_mutex_t *mutex,
DWORD waitResult = WaitForSingleObject (mutexInitializationLock, INFINITE);
if (waitResult != WAIT_OBJECT_0)
{
- system_printf ("Received a unexpected wait result on mutexInitializationLock %d\n", waitResult);
+ system_printf ("Received a unexpected wait result on mutexInitializationLock %d, %E\n", waitResult);
return EINVAL;
}