summaryrefslogtreecommitdiffstats
path: root/generic/tclFCmd.c
diff options
context:
space:
mode:
authorpatthoyts <patthoyts@noemail.net>2008-10-06 21:00:36 (GMT)
committerpatthoyts <patthoyts@noemail.net>2008-10-06 21:00:36 (GMT)
commit32b903a7635d227a5157decdf6de77045260765d (patch)
tree8f0f46c1cb3be438478b562282702cae9d4e8e44 /generic/tclFCmd.c
parente123552e6d9d39d12149d57ae10927324c1eb29e (diff)
downloadtcl-32b903a7635d227a5157decdf6de77045260765d.zip
tcl-32b903a7635d227a5157decdf6de77045260765d.tar.gz
tcl-32b903a7635d227a5157decdf6de77045260765d.tar.bz2
fixed constness of last commit for msvc
FossilOrigin-Name: 2d35bb9a0e323f2b8c819c1edb42350ccb769662
Diffstat (limited to 'generic/tclFCmd.c')
-rw-r--r--generic/tclFCmd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclFCmd.c b/generic/tclFCmd.c
index 6f92304..0e78c4b 100644
--- a/generic/tclFCmd.c
+++ b/generic/tclFCmd.c
@@ -9,7 +9,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclFCmd.c,v 1.48 2008/10/05 22:25:35 nijtmans Exp $
+ * RCS: @(#) $Id: tclFCmd.c,v 1.49 2008/10/06 21:00:37 patthoyts Exp $
*/
#include "tclInt.h"
@@ -1110,7 +1110,7 @@ TclFileAttrsCmd(
* Free up the array we allocated.
*/
- TclStackFree(interp, attributeStringsAllocated);
+ TclStackFree(interp, (void *)attributeStringsAllocated);
/*
* We don't need this object that was passed to us any more.