summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2007-06-20 19:27:40 (GMT)
committerdgp <dgp@users.sourceforge.net>2007-06-20 19:27:40 (GMT)
commitb3b634498bad82d9a92be1965c94f7b3933679f6 (patch)
tree832e42bc9129070fef07327d8fac57edd7a91ae7
parent990150fd25c8206ca25d424fafbdfd2b81199d1f (diff)
downloadtcl-b3b634498bad82d9a92be1965c94f7b3933679f6.zip
tcl-b3b634498bad82d9a92be1965c94f7b3933679f6.tar.gz
tcl-b3b634498bad82d9a92be1965c94f7b3933679f6.tar.bz2
correct pointer type mismatch in latest commit
-rw-r--r--generic/tclNamesp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclNamesp.c b/generic/tclNamesp.c
index 1fa1967..779ed22 100644
--- a/generic/tclNamesp.c
+++ b/generic/tclNamesp.c
@@ -22,7 +22,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclNamesp.c,v 1.140 2007/06/20 18:46:13 dgp Exp $
+ * RCS: @(#) $Id: tclNamesp.c,v 1.141 2007/06/20 19:27:40 dgp Exp $
*/
#include "tclInt.h"
@@ -533,7 +533,7 @@ void
TclPopStackFrame(
Tcl_Interp *interp) /* Interpreter with call frame to pop. */
{
- Tcl_CallFrame *freePtr = ((Interp *)interp)->framePtr;
+ CallFrame *freePtr = ((Interp *)interp)->framePtr;
Tcl_PopCallFrame(interp);
TclStackFree(interp, freePtr);