summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhobbs <hobbs>2007-06-10 21:14:41 (GMT)
committerhobbs <hobbs>2007-06-10 21:14:41 (GMT)
commit78cbf63f6981c799426895c68d288d6ab57f0d01 (patch)
tree4b376b81e166e554d2a047f5d5e32b4817cde778
parent1b3640af7dc19e5af61e546cee6edc86a513b7a2 (diff)
downloadtcl-78cbf63f6981c799426895c68d288d6ab57f0d01.zip
tcl-78cbf63f6981c799426895c68d288d6ab57f0d01.tar.gz
tcl-78cbf63f6981c799426895c68d288d6ab57f0d01.tar.bz2
fix Tcl_Panic error message typo [Bug 1712602]
-rw-r--r--generic/tclBasic.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c
index 61b662b..a06b203 100644
--- a/generic/tclBasic.c
+++ b/generic/tclBasic.c
@@ -13,7 +13,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclBasic.c,v 1.247 2007/06/09 20:12:54 msofer Exp $
+ * RCS: @(#) $Id: tclBasic.c,v 1.248 2007/06/10 21:14:41 hobbs Exp $
*/
#include "tclInt.h"
@@ -462,7 +462,7 @@ Tcl_CreateInterp(void)
result = Tcl_PushCallFrame(interp, (Tcl_CallFrame *) framePtr,
(Tcl_Namespace *) iPtr->globalNsPtr, /*isProcCallFrame*/ 0);
if (result != TCL_OK) {
- Tcl_Panic("Tcl_CreateInterp: faile to push the root stack frame");
+ Tcl_Panic("Tcl_CreateInterp: failed to push the root stack frame");
}
framePtr->objc = 0;