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
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2004-09-03 05:53:12 +0400
committerChristopher Faylor <me@cgf.cx>2004-09-03 05:53:12 +0400
commit0cd9f74fa5f16ff9573ae52a01296b90b02a9324 (patch)
tree5eefd8af91f99ee4a81ed759f1ef0f52b7bbfd3b /winsup/cygwin/dlfcn.cc
parent6644c628f58d55c3dd1176d5800adbdbac08a296 (diff)
Regularize most strace_prints throughout so that %E is always preceded by a
comma and elminate most uses of "foo = %s" to "foo %s".
Diffstat (limited to 'winsup/cygwin/dlfcn.cc')
-rw-r--r--winsup/cygwin/dlfcn.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/dlfcn.cc b/winsup/cygwin/dlfcn.cc
index 9202d1139..e57bb6328 100644
--- a/winsup/cygwin/dlfcn.cc
+++ b/winsup/cygwin/dlfcn.cc
@@ -26,7 +26,7 @@ details. */
static void __stdcall
set_dl_error (const char *str)
{
- __small_sprintf (_my_tls.locals.dl_buffer, "%s: %E", str);
+ __small_sprintf (_my_tls.locals.dl_buffer, "%s, %E", str);
_my_tls.locals.dl_error = 1;
}