summaryrefslogtreecommitdiffstats
path: root/generic/tclIO.c
diff options
context:
space:
mode:
authornijtmans@users.sourceforge.net <jan.nijtmans>2012-04-26 19:59:31 (GMT)
committernijtmans@users.sourceforge.net <jan.nijtmans>2012-04-26 19:59:31 (GMT)
commitbb5f818a7f6d2fc9a4b992fe5d6978f9c83a3881 (patch)
treed37928715d24da5d6d679e5e0256ab693f4a40a0 /generic/tclIO.c
parentbc16da349eb4868c537f52a8f1b5eb1e759f475e (diff)
parentea6ce057bd6d13f118a76961322e7a68578ec8f9 (diff)
downloadtcl-bb5f818a7f6d2fc9a4b992fe5d6978f9c83a3881.zip
tcl-bb5f818a7f6d2fc9a4b992fe5d6978f9c83a3881.tar.gz
tcl-bb5f818a7f6d2fc9a4b992fe5d6978f9c83a3881.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?");