Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/winsup
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2011-03-23 08:30:49 +0300
committerChristopher Faylor <me@cgf.cx>2011-03-23 08:30:49 +0300
commitbb991481c5373108c9717ac7f9fbd28dfbcd2f28 (patch)
tree0244298775ee27163aff1e73af088d4c0df24b3f /winsup
parent4fcb78d9d35bd89b667970ffed1f37d075540160 (diff)
* autoload.cc (dll_load): Change error message to make it clear if a newer DLL
is being run.
Diffstat (limited to 'winsup')
-rw-r--r--winsup/cygwin/ChangeLog5
-rw-r--r--winsup/cygwin/autoload.cc2
2 files changed, 6 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 9918945eb..39dd7b8a3 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -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
diff --git a/winsup/cygwin/autoload.cc b/winsup/cygwin/autoload.cc
index f959edd6b..3cb68bafe 100644
--- a/winsup/cygwin/autoload.cc
+++ b/winsup/cygwin/autoload.cc
@@ -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);
}