diff options
| author | dgp <dgp@users.sourceforge.net> | 2024-09-10 13:26:33 (GMT) |
|---|---|---|
| committer | dgp <dgp@users.sourceforge.net> | 2024-09-10 13:26:33 (GMT) |
| commit | 5a32f3acb9065c32b38532845ae89e99b4e3aa93 (patch) | |
| tree | 673a8dd39c761429afafc47f6ea34c9dd63b50f7 | |
| parent | b6b8c1ac8f21b3562a5980453b0250ea68909648 (diff) | |
| download | tcl-5a32f3acb9065c32b38532845ae89e99b4e3aa93.zip tcl-5a32f3acb9065c32b38532845ae89e99b4e3aa93.tar.gz tcl-5a32f3acb9065c32b38532845ae89e99b4e3aa93.tar.bz2 | |
silence compiler warning
| -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 cd925b5..5bd6972 100644 --- a/generic/tclIO.c +++ b/generic/tclIO.c @@ -324,7 +324,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. */ - size_t epoch; /* The epoch of the channel when the lookup + Tcl_Size 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; |
