diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-06-30 13:16:44 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-06-30 13:16:44 (GMT) |
| commit | c1ce97106f2bcbbcad391621a3617e14a7648052 (patch) | |
| tree | 5c0b46ceadbe2eff89d3297cc3b0b75ce3643b25 /win/tclWinChan.c | |
| parent | c8212c36e91c536433c5a43b8a66ddb19c20d723 (diff) | |
| download | tcl-c1ce97106f2bcbbcad391621a3617e14a7648052.zip tcl-c1ce97106f2bcbbcad391621a3617e14a7648052.tar.gz tcl-c1ce97106f2bcbbcad391621a3617e14a7648052.tar.bz2 | |
Simplify use of "struct" keyword in many places.
Diffstat (limited to 'win/tclWinChan.c')
| -rw-r--r-- | win/tclWinChan.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tclWinChan.c b/win/tclWinChan.c index 78b510b..7518e3e 100644 --- a/win/tclWinChan.c +++ b/win/tclWinChan.c @@ -43,7 +43,7 @@ typedef struct FileInfo { * pending on the channel. */ } FileInfo; -typedef struct ThreadSpecificData { +typedef struct { /* * List of all file channels currently open. */ @@ -58,7 +58,7 @@ static Tcl_ThreadDataKey dataKey; * events are generated. */ -typedef struct FileEvent { +typedef struct { Tcl_Event header; /* Information that is standard for all * events. */ FileInfo *infoPtr; /* Pointer to file info structure. Note that |
