summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/autoload.cc
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2010-09-23 20:18:16 +0000
committerChristopher Faylor <me@cgf.cx>2010-09-23 20:18:16 +0000
commitb3755579563c2f95758702c7e8f2fc8dd1c53f76 (patch)
tree708ca349dff67cdc420fcaf87df8836cc48ea070 /winsup/cygwin/autoload.cc
parent2b35bca98a78797ff8448f737531e0ce07b8826f (diff)
downloadcygnal-b3755579563c2f95758702c7e8f2fc8dd1c53f76.tar.gz
cygnal-b3755579563c2f95758702c7e8f2fc8dd1c53f76.tar.bz2
cygnal-b3755579563c2f95758702c7e8f2fc8dd1c53f76.zip
* autoload.cc (std_dll_init): Use correct format type when displaying dll name
in error output.
Diffstat (limited to 'winsup/cygwin/autoload.cc')
-rw-r--r--winsup/cygwin/autoload.cc2
1 files changed, 1 insertions, 1 deletions
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;
}