summaryrefslogtreecommitdiffstats
path: root/generic/tclIO.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2012-04-26 19:59:31 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2012-04-26 19:59:31 (GMT)
commitdbae0710833f1ecef64a517c3f20bd1ce3b7ed86 (patch)
treed37928715d24da5d6d679e5e0256ab693f4a40a0 /generic/tclIO.c
parenta96ba8ec6197c35dbd3839eebbcfe001543bdad9 (diff)
parentefeae981600cc17e5c9b076cf767c7e9a1efcfd8 (diff)
downloadtcl-dbae0710833f1ecef64a517c3f20bd1ce3b7ed86.zip
tcl-dbae0710833f1ecef64a517c3f20bd1ce3b7ed86.tar.gz
tcl-dbae0710833f1ecef64a517c3f20bd1ce3b7ed86.tar.bz2
get rid of _ANSI_ARGS_ and CONST
Diffstat (limited to 'generic/tclIO.c')
-rw-r--r--generic/tclIO.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclIO.c b/generic/tclIO.c
index 96e6de3..4ba8cd1 100644
--- a/generic/tclIO.c
+++ b/generic/tclIO.c
@@ -8856,7 +8856,7 @@ Tcl_FileEventObjCmd(
int modeIndex; /* Index of mode argument. */
int mask;
static const char *const modeOptions[] = {"readable", "writable", NULL};
- static CONST int maskArray[] = {TCL_READABLE, TCL_WRITABLE};
+ static const int maskArray[] = {TCL_READABLE, TCL_WRITABLE};
if ((objc != 3) && (objc != 4)) {
Tcl_WrongNumArgs(interp, 1, objv, "channelId event ?script?");