summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpatthoyts@users.sourceforge.net <patthoyts>2008-10-06 21:00:36 (GMT)
committerpatthoyts@users.sourceforge.net <patthoyts>2008-10-06 21:00:36 (GMT)
commitcf9aa118ad78a1c5f6d8b50a978e70c4f1eff3e2 (patch)
tree8f0f46c1cb3be438478b562282702cae9d4e8e44
parent5365fdc42dc1f7922d3a117e701dfd3223e9e906 (diff)
downloadtcl-cf9aa118ad78a1c5f6d8b50a978e70c4f1eff3e2.zip
tcl-cf9aa118ad78a1c5f6d8b50a978e70c4f1eff3e2.tar.gz
tcl-cf9aa118ad78a1c5f6d8b50a978e70c4f1eff3e2.tar.bz2
fixed constness of last commit for msvc
-rw-r--r--ChangeLog4
-rw-r--r--generic/tclFCmd.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 1c677e6..df8d479 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2008-10-06 Pat Thoyts <patthoyts@users.sourceforge.net>
+
+ * generic/tclFCmd.c: Fix constness for msvc of last commit
+
2008-10-06 Joe Mistachkin <joe@mistachkin.com>
* tools/man2tcl.c: Added missing line from patch by Harald Oehlmann.
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.