summaryrefslogtreecommitdiffstats
path: root/generic/tclBasic.c
diff options
context:
space:
mode:
authorpatthoyts <patthoyts@users.sourceforge.net>2008-08-20 23:48:42 (GMT)
committerpatthoyts <patthoyts@users.sourceforge.net>2008-08-20 23:48:42 (GMT)
commitae0969dc1fc93fffcaffba7b9558c852a33d624f (patch)
tree94db153b59d92ba32b438c0eade0149305150e3b /generic/tclBasic.c
parentfaa29c2fefd6d227c3dad33bb98df241a38006bf (diff)
downloadtcl-ae0969dc1fc93fffcaffba7b9558c852a33d624f.zip
tcl-ae0969dc1fc93fffcaffba7b9558c852a33d624f.tar.gz
tcl-ae0969dc1fc93fffcaffba7b9558c852a33d624f.tar.bz2
Added casts to make MSVC happy and re-enable the debug build.
Diffstat (limited to 'generic/tclBasic.c')
-rw-r--r--generic/tclBasic.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c
index 40c76b5..ac7fd5e 100644
--- a/generic/tclBasic.c
+++ b/generic/tclBasic.c
@@ -16,7 +16,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.356 2008/08/20 15:31:06 dkf Exp $
+ * RCS: @(#) $Id: tclBasic.c,v 1.357 2008/08/20 23:48:42 patthoyts Exp $
*/
#include "tclInt.h"
@@ -2270,7 +2270,7 @@ TclInvokeStringCommand(
result = (*cmdPtr->proc)(cmdPtr->clientData, interp, objc, argv);
- TclStackFree(interp, argv);
+ TclStackFree(interp, (char **)argv);
return result;
}