summaryrefslogtreecommitdiffstats
path: root/generic
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2005-10-31 17:15:50 (GMT)
committerdgp <dgp@users.sourceforge.net>2005-10-31 17:15:50 (GMT)
commit6e9ae3f8a0c8d09d9742fd61d5734965ed8bf68d (patch)
tree19ae973497da9a9098a722edf3f435c221a066f8 /generic
parent0db677b1ac70da5aa3d1bd0bd38555940c801519 (diff)
downloadtcl-6e9ae3f8a0c8d09d9742fd61d5734965ed8bf68d.zip
tcl-6e9ae3f8a0c8d09d9742fd61d5734965ed8bf68d.tar.gz
tcl-6e9ae3f8a0c8d09d9742fd61d5734965ed8bf68d.tar.bz2
typo
Diffstat (limited to 'generic')
-rw-r--r--generic/tclIO.c4
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;
}
}