summaryrefslogtreecommitdiffstats
path: root/unix/tclLoadShl.c
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2012-08-04 13:04:41 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2012-08-04 13:04:41 (GMT)
commitb8d984dbc886ed27c8607c95a05ee1172e2cc5d0 (patch)
tree5461b99cb700bf228c1f2b4c16f4b7dbfa8c453d /unix/tclLoadShl.c
parent3ac48032033ebb2c43a8a0184ae5f8ef0451e78c (diff)
downloadtcl-b8d984dbc886ed27c8607c95a05ee1172e2cc5d0.zip
tcl-b8d984dbc886ed27c8607c95a05ee1172e2cc5d0.tar.gz
tcl-b8d984dbc886ed27c8607c95a05ee1172e2cc5d0.tar.bz2
more result generation conversion
Diffstat (limited to 'unix/tclLoadShl.c')
-rw-r--r--unix/tclLoadShl.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/unix/tclLoadShl.c b/unix/tclLoadShl.c
index eddd80a..968f232 100644
--- a/unix/tclLoadShl.c
+++ b/unix/tclLoadShl.c
@@ -100,8 +100,9 @@ TclpDlopen(
}
if (handle == NULL) {
- Tcl_AppendResult(interp, "couldn't load file \"", fileName, "\": ",
- Tcl_PosixError(interp), (char *) NULL);
+ Tcl_SetObjResult(interp, Tcl_ObjPrintf(
+ "couldn't load file \"%s\": %s",
+ fileName, Tcl_PosixError(interp)));
return TCL_ERROR;
}
newHandle = ckalloc(sizeof(*newHandle));
@@ -155,9 +156,9 @@ FindSymbol(
Tcl_DStringFree(&newName);
}
if (proc == NULL && interp != NULL) {
- Tcl_ResetResult(interp);
- Tcl_AppendResult(interp, "cannot find symbol\"", symbol, "\": ",
- Tcl_PosixError(interp), NULL);
+ Tcl_SetObjResult(interp, Tcl_ObjPrintf(
+ "cannot find symbol \"%s\": %s",
+ symbol, Tcl_PosixError(interp)));
}
return proc;
}