diff options
| author | dgp@users.sourceforge.net <dgp> | 2005-10-31 17:15:50 (GMT) |
|---|---|---|
| committer | dgp@users.sourceforge.net <dgp> | 2005-10-31 17:15:50 (GMT) |
| commit | 223d0653df9babc72d2cceff49b8da7336fc29c2 (patch) | |
| tree | 19ae973497da9a9098a722edf3f435c221a066f8 | |
| parent | a8da87aafe52cbed0dcc3867c3709e3e2a953b6f (diff) | |
| download | tcl-223d0653df9babc72d2cceff49b8da7336fc29c2.zip tcl-223d0653df9babc72d2cceff49b8da7336fc29c2.tar.gz tcl-223d0653df9babc72d2cceff49b8da7336fc29c2.tar.bz2 | |
typo
| -rw-r--r-- | generic/tclIO.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclIO.c b/generic/tclIO.c index a771ac0..a449875 100644 --- a/generic/tclIO.c +++ b/generic/tclIO.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclIO.c,v 1.99 2005/10/31 15:59:41 dkf Exp $ + * RCS: @(#) $Id: tclIO.c,v 1.100 2005/10/31 17:15:50 dgp Exp $ */ #include "tclInt.h" @@ -6262,7 +6262,7 @@ Tcl_OutputBuffered( if (statePtr->curOutPtr != NULL) { register ChannelBuffer *curOutPtr = statePtr->curOutPtr; - if {curOutPtr->nextAdded > curOutPtr->nextRemoved) { + if (curOutPtr->nextAdded > curOutPtr->nextRemoved) { bytesBuffered += curOutPtr->nextAdded - curOutPtr->nextRemoved; } } |
