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 | fde157fe110c3d91ac52522c38683329a33f70b9 (patch) | |
tree | f44c5fb2ff9d10a5580e7032ec22ad64c97e5837 /generic | |
parent | ad6cba5a8e20b73326e32fd7168a550c2a4090c7 (diff) | |
download | tcl-fde157fe110c3d91ac52522c38683329a33f70b9.zip tcl-fde157fe110c3d91ac52522c38683329a33f70b9.tar.gz tcl-fde157fe110c3d91ac52522c38683329a33f70b9.tar.bz2 |
Member field which should not have been CONST, because it is dynamically allocated
Diffstat (limited to 'generic')
-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 |