diff options
author | patthoyts <patthoyts@users.sourceforge.net> | 2007-06-28 21:10:37 (GMT) |
---|---|---|
committer | patthoyts <patthoyts@users.sourceforge.net> | 2007-06-28 21:10:37 (GMT) |
commit | 44df239c47c8db35ef6ed2cb410ebf367a062d95 (patch) | |
tree | 48212fa321216730cf6755e79181eae112f44efa /generic/tclFCmd.c | |
parent | e1bb8afe489c46336d1fbc4a223e26a9b3979121 (diff) | |
download | tcl-44df239c47c8db35ef6ed2cb410ebf367a062d95.zip tcl-44df239c47c8db35ef6ed2cb410ebf367a062d95.tar.gz tcl-44df239c47c8db35ef6ed2cb410ebf367a062d95.tar.bz2 |
Silence constness warnings for TclStackFree when building with msvc.
Diffstat (limited to 'generic/tclFCmd.c')
-rw-r--r-- | generic/tclFCmd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclFCmd.c b/generic/tclFCmd.c index 1cb3d3f..a9c1613 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.40 2007/06/20 18:46:12 dgp Exp $ + * RCS: @(#) $Id: tclFCmd.c,v 1.41 2007/06/28 21:10:38 patthoyts Exp $ */ #include "tclInt.h" @@ -1112,7 +1112,7 @@ TclFileAttrsCmd( * Free up the array we allocated. */ - TclStackFree(interp, attributeStrings); + TclStackFree(interp, (void *)attributeStrings); /* * We don't need this object that was passed to us any more. |