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 /unix/tclUnixPipe.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 'unix/tclUnixPipe.c')
| -rw-r--r-- | unix/tclUnixPipe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tclUnixPipe.c b/unix/tclUnixPipe.c index 8b26694..be7b4eb 100644 --- a/unix/tclUnixPipe.c +++ b/unix/tclUnixPipe.c @@ -30,7 +30,7 @@ * This structure describes per-instance state of a pipe based channel. */ -typedef struct PipeState { +typedef struct { Tcl_Channel channel; /* Channel associated with this file. */ TclFile inFile; /* Output from pipe. */ TclFile outFile; /* Input to pipe. */ |
