summaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
authordas <das>2006-03-16 09:15:50 (GMT)
committerdas <das>2006-03-16 09:15:50 (GMT)
commit278d6deed875d2e1041c37f225189680d09891bd (patch)
treee6eb4decff312dd60dbbb97aa5d1fbf448f8567d /unix
parent87c9ed6e567dfddf056590c104ffe303a3ace5b7 (diff)
downloadtcl-278d6deed875d2e1041c37f225189680d09891bd.zip
tcl-278d6deed875d2e1041c37f225189680d09891bd.tar.gz
tcl-278d6deed875d2e1041c37f225189680d09891bd.tar.bz2
typo in TclpLoadMemory() error msg
Diffstat (limited to 'unix')
-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;