summaryrefslogtreecommitdiffstats
path: root/unix/tclLoadDyld.c
diff options
context:
space:
mode:
authordas <das@noemail.net>2006-03-16 09:15:42 (GMT)
committerdas <das@noemail.net>2006-03-16 09:15:42 (GMT)
commit2d4d44c85cdb98c578188f210f0f200d46d61043 (patch)
treef19fc98b700e96ca9e63b36c9035bcf7a77bdff8 /unix/tclLoadDyld.c
parent3f43a630c80cd9a52c8b6cfe041711f93da7c861 (diff)
downloadtcl-2d4d44c85cdb98c578188f210f0f200d46d61043.zip
tcl-2d4d44c85cdb98c578188f210f0f200d46d61043.tar.gz
tcl-2d4d44c85cdb98c578188f210f0f200d46d61043.tar.bz2
typo in TclpLoadMemory() error msg
FossilOrigin-Name: 122664d9073b308c6ed0a7bba387bc89b13a18d2
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 ac38350..81f59be 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.22 2005/11/27 06:09:10 das Exp $
+ * RCS: @(#) $Id: tclLoadDyld.c,v 1.23 2006/03/16 09:15:43 das Exp $
*/
#include "tclInt.h"
@@ -535,7 +535,7 @@ TclpLoadMemory(
vm_deallocate(mach_task_self(), (vm_address_t) buffer, size);
if (objFileImageErrMsg != NULL) {
Tcl_AppendResult(interp,
- "NSCreateObjectFileImageFromFile() error: ",
+ "NSCreateObjectFileImageFromMemory() error: ",
objFileImageErrMsg, NULL);
}
return TCL_ERROR;