diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2015-06-23 20:32:33 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2015-06-23 20:32:33 (GMT) |
commit | 7cd09ac45001b00f1ea4a4e82eee8d78484c7822 (patch) | |
tree | 096f955b5a08c8c9d960fb7ca2eca0b8bc0f4080 /generic/tclIO.h | |
parent | 3eb2fa20dcdf1e70f6d66550789099af2e79ca57 (diff) | |
parent | 447722a6ad983008b5be213d3e39685262398019 (diff) | |
download | tcl-7cd09ac45001b00f1ea4a4e82eee8d78484c7822.zip tcl-7cd09ac45001b00f1ea4a4e82eee8d78484c7822.tar.gz tcl-7cd09ac45001b00f1ea4a4e82eee8d78484c7822.tar.bz2 |
Member field which should not have been const, because it is dynamically allocated. Some end-of-line spacing in header files.
Diffstat (limited to 'generic/tclIO.h')
-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 ca74c3e..7aa07eb 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 |