summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixChan.c
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2016-07-02 20:43:16 (GMT)
committerdgp <dgp@users.sourceforge.net>2016-07-02 20:43:16 (GMT)
commit3f704efe4e8c1fc7b8eff04d4a7eb80c31c7f44e (patch)
tree2197fdfe935e76e4b8dd4b78ccd3a79b7320603d /unix/tclUnixChan.c
parent7add065e0f5720a2ee8d4d874931087e1ad246cc (diff)
parent8e39be1340c8878cb33ac4c219acb88d3521a7a0 (diff)
downloadtcl-3f704efe4e8c1fc7b8eff04d4a7eb80c31c7f44e.zip
tcl-3f704efe4e8c1fc7b8eff04d4a7eb80c31c7f44e.tar.gz
tcl-3f704efe4e8c1fc7b8eff04d4a7eb80c31c7f44e.tar.bz2
merge trunk
Diffstat (limited to 'unix/tclUnixChan.c')
-rw-r--r--unix/tclUnixChan.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclUnixChan.c b/unix/tclUnixChan.c
index b4b2739..6418f48 100644
--- a/unix/tclUnixChan.c
+++ b/unix/tclUnixChan.c
@@ -61,7 +61,7 @@
* This structure describes per-instance state of a file based channel.
*/
-typedef struct FileState {
+typedef struct {
Tcl_Channel channel; /* Channel associated with this file. */
int fd; /* File handle. */
int validMask; /* OR'ed combination of TCL_READABLE,
@@ -76,7 +76,7 @@ typedef struct FileState {
* a platform-independant manner.
*/
-typedef struct TtyAttrs {
+typedef struct {
int baud;
int parity;
int data;