diff options
author | Christopher Faylor <me@cgf.cx> | 2004-09-03 01:53:12 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2004-09-03 01:53:12 +0000 |
commit | 0cd9f74fa5f16ff9573ae52a01296b90b02a9324 (patch) | |
tree | 5eefd8af91f99ee4a81ed759f1ef0f52b7bbfd3b /winsup/cygwin/dlfcn.cc | |
parent | 6644c628f58d55c3dd1176d5800adbdbac08a296 (diff) | |
download | cygnal-0cd9f74fa5f16ff9573ae52a01296b90b02a9324.tar.gz cygnal-0cd9f74fa5f16ff9573ae52a01296b90b02a9324.tar.bz2 cygnal-0cd9f74fa5f16ff9573ae52a01296b90b02a9324.zip |
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.cc | 2 |
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; } |