diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2012-11-15 01:44:12 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2012-11-15 01:44:12 (GMT) |
commit | 9ae0d652824688e3ac54ef7d4df854cbedbefe72 (patch) | |
tree | 12e846026470f13d35e136127d77c0f1ce85e919 /unix | |
parent | 0cf9c26b08c885caa146634eadddc5fb3dbcd5e7 (diff) | |
download | tcl-9ae0d652824688e3ac54ef7d4df854cbedbefe72.zip tcl-9ae0d652824688e3ac54ef7d4df854cbedbefe72.tar.gz tcl-9ae0d652824688e3ac54ef7d4df854cbedbefe72.tar.bz2 |
unbreak trunk; fix some warnings
Diffstat (limited to 'unix')
-rw-r--r-- | unix/tclLoadDyld.c | 3 |
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; |