diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2007-04-10 22:02:59 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2007-04-10 22:02:59 (GMT) |
commit | 279249df68a5c724813817eae1b6cee5e92a2c94 (patch) | |
tree | 9d68a73aea0c56c53873c7ef26fa62da1c524f95 /generic/tclIORChan.c | |
parent | 5b06412d7ee8a0775cc9be68d68e5aaa3e7d1ab4 (diff) | |
download | tcl-279249df68a5c724813817eae1b6cee5e92a2c94.zip tcl-279249df68a5c724813817eae1b6cee5e92a2c94.tar.gz tcl-279249df68a5c724813817eae1b6cee5e92a2c94.tar.bz2 |
Complete conversion to ANSI function definitions
Diffstat (limited to 'generic/tclIORChan.c')
-rw-r--r-- | generic/tclIORChan.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclIORChan.c b/generic/tclIORChan.c index 93683a7..5ad1dbc 100644 --- a/generic/tclIORChan.c +++ b/generic/tclIORChan.c @@ -15,7 +15,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclIORChan.c,v 1.21 2007/04/10 14:47:15 dkf Exp $ + * RCS: @(#) $Id: tclIORChan.c,v 1.22 2007/04/10 22:02:59 dkf Exp $ */ #include <tclInt.h> @@ -1919,8 +1919,8 @@ NextHandle(void) } static void -FreeReflectedChannel(rcPtr) - ReflectedChannel *rcPtr; +FreeReflectedChannel( + ReflectedChannel *rcPtr) { Channel *chanPtr = (Channel *) rcPtr->chan; int i, n; |