summaryrefslogtreecommitdiffstats
path: root/unix/tclLoadDyld.c
diff options
context:
space:
mode:
authordas <das@noemail.net>2006-03-16 09:15:49 (GMT)
committerdas <das@noemail.net>2006-03-16 09:15:49 (GMT)
commit13930aabedb046987fa533b050c9f51ddc111b61 (patch)
treee6eb4decff312dd60dbbb97aa5d1fbf448f8567d /unix/tclLoadDyld.c
parent006b73659655211d27c96a7a0e5c50d5a7ab6d39 (diff)
downloadtcl-13930aabedb046987fa533b050c9f51ddc111b61.zip
tcl-13930aabedb046987fa533b050c9f51ddc111b61.tar.gz
tcl-13930aabedb046987fa533b050c9f51ddc111b61.tar.bz2
typo in TclpLoadMemory() error msg
FossilOrigin-Name: 3cfd2d4fd51785ea160f70d44ed3c5578b41f51f
Diffstat (limited to 'unix/tclLoadDyld.c')
-rw-r--r--unix/tclLoadDyld.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclLoadDyld.c b/unix/tclLoadDyld.c
index 109aa37..121792f 100644
--- a/unix/tclLoadDyld.c
+++ b/unix/tclLoadDyld.c
@@ -12,7 +12,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclLoadDyld.c,v 1.14.2.6 2005/11/27 06:09:19 das Exp $
+ * RCS: @(#) $Id: tclLoadDyld.c,v 1.14.2.7 2006/03/16 09:15:50 das Exp $
*/
#include "tclInt.h"
@@ -537,7 +537,7 @@ TclpLoadMemory(interp, buffer, size, codeSize, loadHandle, unloadProcPtr)
vm_deallocate(mach_task_self(), (vm_address_t) buffer, size);
if (objFileImageErrMsg != NULL) {
Tcl_AppendResult(interp,
- "NSCreateObjectFileImageFromFile() error: ",
+ "NSCreateObjectFileImageFromMemory() error: ",
objFileImageErrMsg, (char *) NULL);
}
return TCL_ERROR;