summaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
authorstwo <stwo>2012-08-04 18:54:45 (GMT)
committerstwo <stwo>2012-08-04 18:54:45 (GMT)
commitd8bae8d8c160bda642defb70d49448aadd1b6068 (patch)
tree3b5057c47267d2f7c6e523d06dcc38f77f0911bb /unix
parentb8d984dbc886ed27c8607c95a05ee1172e2cc5d0 (diff)
downloadtcl-d8bae8d8c160bda642defb70d49448aadd1b6068.zip
tcl-d8bae8d8c160bda642defb70d49448aadd1b6068.tar.gz
tcl-d8bae8d8c160bda642defb70d49448aadd1b6068.tar.bz2
Unbreak.
Diffstat (limited to 'unix')
-rw-r--r--unix/tclLoadDl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tclLoadDl.c b/unix/tclLoadDl.c
index 4f9c6b8..f8fe6d3 100644
--- a/unix/tclLoadDl.c
+++ b/unix/tclLoadDl.c
@@ -177,7 +177,7 @@ FindSymbol(
Tcl_DStringFree(&ds);
if (proc == NULL && interp != NULL) {
Tcl_SetObjResult(interp, Tcl_ObjPrintf(
- "cannot find symbol \"%s\": %s", symbol, dlerror());
+ "cannot find symbol \"%s\": %s", symbol, dlerror()));
Tcl_SetErrorCode(interp, "TCL", "LOOKUP", "LOAD_SYMBOL", symbol,
NULL);
}