* autoload.cc (std_dll_init): Use correct format type when displaying dll name
in error output.
This commit is contained in:
parent
2b35bca98a
commit
b375557956
|
@ -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.
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue