* autoload.cc (std_dll_init): Use correct format type when displaying dll name

in error output.
This commit is contained in:
Christopher Faylor 2010-09-23 20:18:16 +00:00
parent 2b35bca98a
commit b375557956
2 changed files with 6 additions and 1 deletions

View File

@ -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.

View File

@ -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;
}