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 + + * autoload.cc (std_dll_init): Use correct format type when displaying + dll name in error output. + 2010-09-21 Pierre Humblet * 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; }