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:
authorCorinna Vinschen <corinna@vinschen.de>2004-03-31 23:34:27 +0400
committerCorinna Vinschen <corinna@vinschen.de>2004-03-31 23:34:27 +0400
commitfbba4780afa4e15effff7ae122252cbf919ac77e (patch)
treee977567925a0f0a7c8bdc87a480474f57be8578d /winsup/cygwin/fhandler_tape.cc
parent455bbeae3882e2469c379f47419b41bf626e6e7c (diff)
* fhandler_tape.cc (mtinfo::initialize): Fix fatal error message.
Diffstat (limited to 'winsup/cygwin/fhandler_tape.cc')
-rw-r--r--winsup/cygwin/fhandler_tape.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/fhandler_tape.cc b/winsup/cygwin/fhandler_tape.cc
index 4cebc13a8..e3c0fdc4c 100644
--- a/winsup/cygwin/fhandler_tape.cc
+++ b/winsup/cygwin/fhandler_tape.cc
@@ -1086,7 +1086,7 @@ mtinfo::initialize (void)
shared_name (name, "mtinfo_mutex", 0);
if (!(mtx = CreateMutex (&sec_all_nih, FALSE, name)))
- api_fatal ("CreateMutex '%s'(%p), %E. Terminating.", name);
+ api_fatal ("CreateMutex '%s', %E. Terminating.", name);
WaitForSingleObject (mtx, INFINITE);
if (!magic)
{