diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2015-06-23 19:58:38 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2015-06-23 19:58:38 (GMT) |
commit | 447722a6ad983008b5be213d3e39685262398019 (patch) | |
tree | f44c5fb2ff9d10a5580e7032ec22ad64c97e5837 | |
parent | 3edfd7cd0b80d37eb9bb59c40970fea1baa27b8d (diff) | |
download | tcl-447722a6ad983008b5be213d3e39685262398019.zip tcl-447722a6ad983008b5be213d3e39685262398019.tar.gz tcl-447722a6ad983008b5be213d3e39685262398019.tar.bz2 |
Member field which should not have been CONST, because it is dynamically allocated
-rw-r--r-- | generic/tclIO.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclIO.h b/generic/tclIO.h index b4a5405..20e0ccd 100644 --- a/generic/tclIO.h +++ b/generic/tclIO.h @@ -126,7 +126,7 @@ typedef struct Channel { */ typedef struct ChannelState { - CONST char *channelName; /* The name of the channel instance in Tcl + char *channelName; /* The name of the channel instance in Tcl * commands. Storage is owned by the generic * IO code, is dynamically allocated. */ int flags; /* ORed combination of the flags defined |