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