diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-08-20 06:49:25 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-08-20 06:49:25 (GMT) |
commit | 040753e40a5a86ac36162436f039def7a7238dc9 (patch) | |
tree | f12dd6b08f1cd82f307af3dfe425de988643035f /unix/tclUnixTest.c | |
parent | 655c8c52be3b109ab737475210e3cd877921076c (diff) | |
download | tcl-040753e40a5a86ac36162436f039def7a7238dc9.zip tcl-040753e40a5a86ac36162436f039def7a7238dc9.tar.gz tcl-040753e40a5a86ac36162436f039def7a7238dc9.tar.bz2 |
remove unnecessary struct names, which only pollute the "struct" namespace for te compiler.
Diffstat (limited to 'unix/tclUnixTest.c')
-rw-r--r-- | unix/tclUnixTest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tclUnixTest.c b/unix/tclUnixTest.c index 46fc972..8b3338a 100644 --- a/unix/tclUnixTest.c +++ b/unix/tclUnixTest.c @@ -37,7 +37,7 @@ * exercised by the "testfilehandler" command. */ -typedef struct Pipe { +typedef struct { TclFile readFile; /* File handle for reading from the pipe. NULL * means pipe doesn't exist yet. */ TclFile writeFile; /* File handle for writing from the pipe. */ |