summaryrefslogtreecommitdiffstats
path: root/generic/tcl.h
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2022-06-23 15:33:48 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2022-06-23 15:33:48 (GMT)
commitf527a3f4568093147bf17db414cc0340bbac5045 (patch)
treea75b09a39cac0f365befb898e7bf9db309d307f3 /generic/tcl.h
parent65cf5b39664345503c534418c57505e118a9b3a8 (diff)
downloadtcl-f527a3f4568093147bf17db414cc0340bbac5045.zip
tcl-f527a3f4568093147bf17db414cc0340bbac5045.tar.gz
tcl-f527a3f4568093147bf17db414cc0340bbac5045.tar.bz2
more "unsigned int" -> TCL_HASH_TYPE
Diffstat (limited to 'generic/tcl.h')
-rw-r--r--generic/tcl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tcl.h b/generic/tcl.h
index 61b0c48..94c236a 100644
--- a/generic/tcl.h
+++ b/generic/tcl.h
@@ -1291,7 +1291,7 @@ typedef struct Tcl_HashSearch {
typedef struct {
void *next; /* Search position for underlying hash
* table. */
- unsigned int epoch; /* Epoch marker for dictionary being searched,
+ TCL_HASH_TYPE epoch; /* Epoch marker for dictionary being searched,
* or 0 if search has terminated. */
Tcl_Dict dictionaryPtr; /* Reference to dictionary being searched. */
} Tcl_DictSearch;