summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2012-11-15 01:44:12 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2012-11-15 01:44:12 (GMT)
commit4a2c3d9ab9bddefd822a41b5c8ce7fa80894860d (patch)
tree12e846026470f13d35e136127d77c0f1ce85e919
parent59c308ebf02648dbc908f7cf598e3a3c9d5ad03a (diff)
downloadtcl-4a2c3d9ab9bddefd822a41b5c8ce7fa80894860d.zip
tcl-4a2c3d9ab9bddefd822a41b5c8ce7fa80894860d.tar.gz
tcl-4a2c3d9ab9bddefd822a41b5c8ce7fa80894860d.tar.bz2
unbreak trunk; fix some warnings
-rw-r--r--unix/tclLoadDyld.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/unix/tclLoadDyld.c b/unix/tclLoadDyld.c
index 5df022e..50c283d 100644
--- a/unix/tclLoadDyld.c
+++ b/unix/tclLoadDyld.c
@@ -205,6 +205,7 @@ TclpDlopen(
* Let the OS loader examine the binary search path for whatever string
* the user gave us which hopefully refers to a file on the binary
* path.
+ */
dlHandle = dlopen(nativeFileName, dlopenflags);
if (!dlHandle) {
@@ -661,7 +662,7 @@ TclpLoadMemory(
vm_deallocate(mach_task_self(), (vm_address_t) buffer, size);
if (objFileImageErrMsg != NULL) {
Tcl_SetObjResult(interp, Tcl_ObjPrintf(
- "NSCreateObjectFileImageFromMemory() error: ",
+ "NSCreateObjectFileImageFromMemory() error: %s",
objFileImageErrMsg));
}
return TCL_ERROR;