summaryrefslogtreecommitdiffstats
path: root/generic/tclInt.h
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2022-09-07 14:47:52 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2022-09-07 14:47:52 (GMT)
commitd12caa5cd97a62ef81fab89e63cf5d006c628b46 (patch)
tree8bca6d58af171a7a42f2c27f5b4e0533579be54f /generic/tclInt.h
parent558466820c5e1155087da82f05a9c22a622004f4 (diff)
downloadtcl-d12caa5cd97a62ef81fab89e63cf5d006c628b46.zip
tcl-d12caa5cd97a62ef81fab89e63cf5d006c628b46.tar.gz
tcl-d12caa5cd97a62ef81fab89e63cf5d006c628b46.tar.bz2
Tcl_Size -> size_t (twice)
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r--generic/tclInt.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h
index 183452e..4af38f3 100644
--- a/generic/tclInt.h
+++ b/generic/tclInt.h
@@ -2450,7 +2450,7 @@ typedef struct ListStore {
Tcl_Size firstUsed; /* Index of first slot in use within slots[] */
Tcl_Size numUsed; /* Number of slots in use (starting firstUsed) */
Tcl_Size numAllocated; /* Total number of slots[] array slots. */
- Tcl_Size refCount; /* Number of references to this instance */
+ size_t refCount; /* Number of references to this instance */
int flags; /* LISTSTORE_* flags */
Tcl_Obj *slots[TCLFLEXARRAY]; /* Variable size array. Grown as needed */
} ListStore;
@@ -2474,7 +2474,7 @@ typedef struct ListStore {
typedef struct ListSpan {
Tcl_Size spanStart; /* Starting index of the span */
Tcl_Size spanLength; /* Number of elements in the span */
- Tcl_Size refCount; /* Count of references to this span record */
+ size_t refCount; /* Count of references to this span record */
} ListSpan;
#ifndef LIST_SPAN_THRESHOLD /* May be set on build line */
#define LIST_SPAN_THRESHOLD 101