diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2012-08-04 13:04:41 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2012-08-04 13:04:41 (GMT) |
commit | 911e356870519d1379c9246402fcfdd3076c484c (patch) | |
tree | 5461b99cb700bf228c1f2b4c16f4b7dbfa8c453d /unix/tclLoadDl.c | |
parent | c1c198bb1f699e668cb78c2bf0275ceb6eb25435 (diff) | |
download | tcl-911e356870519d1379c9246402fcfdd3076c484c.zip tcl-911e356870519d1379c9246402fcfdd3076c484c.tar.gz tcl-911e356870519d1379c9246402fcfdd3076c484c.tar.bz2 |
more result generation conversion
Diffstat (limited to 'unix/tclLoadDl.c')
-rw-r--r-- | unix/tclLoadDl.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/unix/tclLoadDl.c b/unix/tclLoadDl.c index d86e7fd..4f9c6b8 100644 --- a/unix/tclLoadDl.c +++ b/unix/tclLoadDl.c @@ -112,8 +112,9 @@ TclpDlopen( const char *errorStr = dlerror(); - Tcl_AppendResult(interp, "couldn't load file \"", - Tcl_GetString(pathPtr), "\": ", errorStr, NULL); + Tcl_SetObjResult(interp, Tcl_ObjPrintf( + "couldn't load file \"%s\": %s", + Tcl_GetString(pathPtr), errorStr)); return TCL_ERROR; } newHandle = ckalloc(sizeof(*newHandle)); @@ -175,9 +176,8 @@ FindSymbol( } Tcl_DStringFree(&ds); if (proc == NULL && interp != NULL) { - Tcl_ResetResult(interp); - Tcl_AppendResult(interp, "cannot find symbol \"", symbol, "\": ", - dlerror(), NULL); + Tcl_SetObjResult(interp, Tcl_ObjPrintf( + "cannot find symbol \"%s\": %s", symbol, dlerror()); Tcl_SetErrorCode(interp, "TCL", "LOOKUP", "LOAD_SYMBOL", symbol, NULL); } |