* autoload.cc (dll_load): Change error message to make it clear if a newer DLL

is being run.
This commit is contained in:
Christopher Faylor 2011-03-23 05:30:49 +00:00
parent 4fcb78d9d3
commit bb991481c5
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2011-03-23 Christopher Faylor <me.cygwin2011@cgf.cx>
* autoload.cc (dll_load): Change error message to make it clear if a
newer DLL is being run.
2011-03-20 Corinna Vinschen <corinna@vinschen.de>
* fenv.cc (_feinitialise): Don't use SSE instructions on systems not

View File

@ -278,7 +278,7 @@ std_dll_init ()
else if ((func->decoration & 1))
dll->handle = INVALID_HANDLE_VALUE;
else
api_fatal ("could not load %W, %E", dll_path);
api_fatal ("unable to load %W, %E", dll_path);
}
fesetenv (&fpuenv);
}