diff options
author | stwo <stwo> | 2012-08-04 18:54:45 (GMT) |
---|---|---|
committer | stwo <stwo> | 2012-08-04 18:54:45 (GMT) |
commit | d8bae8d8c160bda642defb70d49448aadd1b6068 (patch) | |
tree | 3b5057c47267d2f7c6e523d06dcc38f77f0911bb /unix | |
parent | b8d984dbc886ed27c8607c95a05ee1172e2cc5d0 (diff) | |
download | tcl-d8bae8d8c160bda642defb70d49448aadd1b6068.zip tcl-d8bae8d8c160bda642defb70d49448aadd1b6068.tar.gz tcl-d8bae8d8c160bda642defb70d49448aadd1b6068.tar.bz2 |
Unbreak.
Diffstat (limited to 'unix')
-rw-r--r-- | unix/tclLoadDl.c | 2 |
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); } |