diff options
author | das <das> | 2006-03-16 09:15:43 (GMT) |
---|---|---|
committer | das <das> | 2006-03-16 09:15:43 (GMT) |
commit | 5bd92b680a07ebd18b890f26fa905f63c0652c36 (patch) | |
tree | f19fc98b700e96ca9e63b36c9035bcf7a77bdff8 /unix/tclLoadDyld.c | |
parent | 05b75a0ef0b2ec55a7f535040223d308ca716546 (diff) | |
download | tcl-5bd92b680a07ebd18b890f26fa905f63c0652c36.zip tcl-5bd92b680a07ebd18b890f26fa905f63c0652c36.tar.gz tcl-5bd92b680a07ebd18b890f26fa905f63c0652c36.tar.bz2 |
typo in TclpLoadMemory() error msg
Diffstat (limited to 'unix/tclLoadDyld.c')
-rw-r--r-- | unix/tclLoadDyld.c | 4 |
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; |