diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2012-08-07 20:57:08 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2012-08-07 20:57:08 (GMT) |
commit | 0fe2d45ae44323638f143bf320c77a5cb6df2a01 (patch) | |
tree | 01529af3ee161f7c70fd8f14ba581054bd52155c /generic/tclIORChan.c | |
parent | 00acd83312b7bcc144212b7bd1a47436719b0d2c (diff) | |
download | tcl-0fe2d45ae44323638f143bf320c77a5cb6df2a01.zip tcl-0fe2d45ae44323638f143bf320c77a5cb6df2a01.tar.gz tcl-0fe2d45ae44323638f143bf320c77a5cb6df2a01.tar.bz2 |
Minor changes to improve style (C89 declarations, consistent indentation,
clarification of #endifs, reduction of unnecessary casts, use of array syntax
for reading array elements, etc.)
Diffstat (limited to 'generic/tclIORChan.c')
-rw-r--r-- | generic/tclIORChan.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/generic/tclIORChan.c b/generic/tclIORChan.c index a354d60..cb0282a 100644 --- a/generic/tclIORChan.c +++ b/generic/tclIORChan.c @@ -1774,7 +1774,9 @@ ReflectBlock( */ static void -ReflectThread(ClientData clientData, int action) +ReflectThread( + ClientData clientData, + int action) { ReflectedChannel *rcPtr = clientData; |