diff options
author | nijtmans <nijtmans> | 2009-11-18 22:21:06 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2009-11-18 22:21:06 (GMT) |
commit | a9191c772b1a15d5f705b2d4fa807388370ac0f8 (patch) | |
tree | 9736b3c7f042c5c1f6a56e543359da755f8cf935 /generic | |
parent | ea0295332cb0b7c680cc7c47a2e9676a02b04b16 (diff) | |
download | tcl-a9191c772b1a15d5f705b2d4fa807388370ac0f8.zip tcl-a9191c772b1a15d5f705b2d4fa807388370ac0f8.tar.gz tcl-a9191c772b1a15d5f705b2d4fa807388370ac0f8.tar.bz2 |
Eliminate unneccessary spaces
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tclIORTrans.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/generic/tclIORTrans.c b/generic/tclIORTrans.c index cb91829..e22b356 100644 --- a/generic/tclIORTrans.c +++ b/generic/tclIORTrans.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: tclIORTrans.c,v 1.9 2009/09/01 17:31:53 andreas_kupries Exp $ + * RCS: @(#) $Id: tclIORTrans.c,v 1.10 2009/11/18 22:21:06 nijtmans Exp $ */ #include <tclInt.h> @@ -1517,7 +1517,7 @@ ReflectSetOption( * level is not involved there is no need for thread forwarding. */ - Tcl_DriverSetOptionProc *setOptionProc = + Tcl_DriverSetOptionProc *setOptionProc = Tcl_ChannelSetOptionProc(Tcl_GetChannelType(rtPtr->parent)); if (setOptionProc == NULL) { @@ -1563,7 +1563,7 @@ ReflectGetOption( * specific option has to fail. */ - Tcl_DriverGetOptionProc *getOptionProc = + Tcl_DriverGetOptionProc *getOptionProc = Tcl_ChannelGetOptionProc(Tcl_GetChannelType(rtPtr->parent)); if (getOptionProc != NULL) { @@ -1751,7 +1751,7 @@ NewReflectedTransform( rtPtr->timer = NULL; rtPtr->mode = 0; rtPtr->readIsDrained = 0; - rtPtr->nonblocking = + rtPtr->nonblocking = (((Channel *) parentChan)->state->flags & CHANNEL_NONBLOCKING); /* |