diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-02-15 14:04:15 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-02-15 14:04:15 (GMT) |
commit | 462ffc792711dc33c7d17b48fc3bdb65bee277de (patch) | |
tree | 2127e967c8d192671aa5d194c38b4d745ab78bda /generic/tclIO.c | |
parent | a13289725c7144cf1453ac5a3674bf763450872c (diff) | |
download | tcl-462ffc792711dc33c7d17b48fc3bdb65bee277de.zip tcl-462ffc792711dc33c7d17b48fc3bdb65bee277de.tar.gz tcl-462ffc792711dc33c7d17b48fc3bdb65bee277de.tar.bz2 |
More internal use of size_t in stead of int, e.g. for epoch's
Diffstat (limited to 'generic/tclIO.c')
-rw-r--r-- | generic/tclIO.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclIO.c b/generic/tclIO.c index 506e6d5..6bf8451 100644 --- a/generic/tclIO.c +++ b/generic/tclIO.c @@ -321,7 +321,7 @@ static int WillRead(Channel *chanPtr); typedef struct ResolvedChanName { ChannelState *statePtr; /* The saved lookup result */ Tcl_Interp *interp; /* The interp in which the lookup was done. */ - int epoch; /* The epoch of the channel when the lookup + size_t epoch; /* The epoch of the channel when the lookup * was done. Use to verify validity. */ size_t refCount; /* Share this struct among many Tcl_Obj. */ } ResolvedChanName; |