diff options
author | andreas_kupries <akupries@shaw.ca> | 2002-02-15 19:58:28 (GMT) |
---|---|---|
committer | andreas_kupries <akupries@shaw.ca> | 2002-02-15 19:58:28 (GMT) |
commit | 097b4b7f2e14a0d47f82c9d8b7579bee651660b4 (patch) | |
tree | bc4839f43def6eadc8b2d9058b931dc569d662bf /generic/tclIOGT.c | |
parent | 66a15c6f8be47c3acbdddffadc67f50dec8a56e6 (diff) | |
download | tcl-097b4b7f2e14a0d47f82c9d8b7579bee651660b4.zip tcl-097b4b7f2e14a0d47f82c9d8b7579bee651660b4.tar.gz tcl-097b4b7f2e14a0d47f82c9d8b7579bee651660b4.tar.bz2 |
* tclExecute.c:
* tclIOGT.c:
* tclIndexObj.c: Touchups to the TIP 72 patch to make it
compileable under Windows again. The changes are not complete,
there is one nasty regarding _stati64
Diffstat (limited to 'generic/tclIOGT.c')
-rw-r--r-- | generic/tclIOGT.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclIOGT.c b/generic/tclIOGT.c index c48ce18..022ba35 100644 --- a/generic/tclIOGT.c +++ b/generic/tclIOGT.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. * - * CVS: $Id: tclIOGT.c,v 1.5 2002/02/15 14:28:49 dkf Exp $ + * CVS: $Id: tclIOGT.c,v 1.6 2002/02/15 19:58:28 andreas_kupries Exp $ */ #include "tclInt.h" @@ -850,7 +850,7 @@ TransformSeekProc (instanceData, offset, mode, errorCodePtr) int mode; /* How to move */ int* errorCodePtr; /* Location of error flag. */ { - int result; + Tcl_WideInt result; TransformChannelData* dataPtr = (TransformChannelData*) instanceData; Tcl_Channel parent = Tcl_GetStackedChannel(dataPtr->self); Tcl_ChannelType* parentType = Tcl_GetChannelType(parent); |