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>2010-09-24 00:18:16 +0400
committerChristopher Faylor <me@cgf.cx>2010-09-24 00:18:16 +0400
commitb3755579563c2f95758702c7e8f2fc8dd1c53f76 (patch)
tree708ca349dff67cdc420fcaf87df8836cc48ea070
parent2b35bca98a78797ff8448f737531e0ce07b8826f (diff)
* autoload.cc (std_dll_init): Use correct format type when displaying dll name
in error output.
-rw-r--r--winsup/cygwin/ChangeLog5
-rw-r--r--winsup/cygwin/autoload.cc2
2 files changed, 6 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index db364b401..6bb775d14 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,8 @@
+2010-09-23 Christopher Faylor <me+cygwin@cgf.cx>
+
+ * autoload.cc (std_dll_init): Use correct format type when displaying
+ dll name in error output.
+
2010-09-21 Pierre Humblet <Pierre.Humblet@ieee.org>
* libc/minires.c (res_nsend): Use the Windows resolver if appropriate.
diff --git a/winsup/cygwin/autoload.cc b/winsup/cygwin/autoload.cc
index 5054f6808..99fcf790e 100644
--- a/winsup/cygwin/autoload.cc
+++ b/winsup/cygwin/autoload.cc
@@ -233,7 +233,7 @@ std_dll_init ()
dll->handle = h;
}
else if (!(func->decoration & 1))
- api_fatal ("could not load %s, %E", dll->name);
+ api_fatal ("could not load %W, %E", dll->name);
else
dll->handle = INVALID_HANDLE_VALUE;
}