diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2010-03-20 17:49:15 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2010-03-20 17:49:15 (GMT) |
commit | 8d0ad6bd16b01c1d0e781660e7ecd138120f5a7a (patch) | |
tree | f9ac548be8438b6d5ef76845452db318fce9765d /generic/tclIO.c | |
parent | d1bb696494e79660e15cf20562a88f119df66388 (diff) | |
download | tcl-8d0ad6bd16b01c1d0e781660e7ecd138120f5a7a.zip tcl-8d0ad6bd16b01c1d0e781660e7ecd138120f5a7a.tar.gz tcl-8d0ad6bd16b01c1d0e781660e7ecd138120f5a7a.tar.bz2 |
Missed a spot.
Diffstat (limited to 'generic/tclIO.c')
-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 2ec35cc..0ed57d0 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.174 2010/03/20 15:39:46 dkf Exp $ + * RCS: @(#) $Id: tclIO.c,v 1.175 2010/03/20 17:49:15 dkf Exp $ */ #include "tclInt.h" @@ -9345,7 +9345,7 @@ CopyData( result = TCL_ERROR; } else { Tcl_ResetResult(interp); - Tcl_SetObjResult(interp, Tcl_NewIntObj(total)); + Tcl_SetObjResult(interp, Tcl_NewWideIntObj(total)); } } } |