diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-04-11 15:20:07 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-04-11 15:20:07 (GMT) |
commit | 4775249efa107caa7895328913957997cf0bc6d8 (patch) | |
tree | ca2f013549de2b7536af92162bcf4bade5d91f35 /generic/tclIO.c | |
parent | 90ca2f4448e5aba75ffe9b71d877b557264a90a0 (diff) | |
download | tcl-4775249efa107caa7895328913957997cf0bc6d8.zip tcl-4775249efa107caa7895328913957997cf0bc6d8.tar.gz tcl-4775249efa107caa7895328913957997cf0bc6d8.tar.bz2 |
Remove some unnecessary "struct" definitions and some type casts no longer necessary. No functional changes.
Diffstat (limited to 'generic/tclIO.c')
-rw-r--r-- | generic/tclIO.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclIO.c b/generic/tclIO.c index 32fbd59..1460392 100644 --- a/generic/tclIO.c +++ b/generic/tclIO.c @@ -116,7 +116,7 @@ typedef struct CopyState { * The structure defined below is used in this file only. */ -typedef struct ThreadSpecificData { +typedef struct { NextChannelHandler *nestedHandlerPtr; /* This variable holds the list of nested * Tcl_NotifyChannel invocations. */ |