summaryrefslogtreecommitdiffstats
path: root/generic
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2024-09-09 18:45:05 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2024-09-09 18:45:05 (GMT)
commit933ddfa420f7307316da52c6d8d0b3f705851fce (patch)
tree3adb5f017a839e316ae9a7654d93fc0d241fadb2 /generic
parent8556b7142971aec9ec8eef280d1290bb55523428 (diff)
parentb6b8c1ac8f21b3562a5980453b0250ea68909648 (diff)
downloadtcl-933ddfa420f7307316da52c6d8d0b3f705851fce.zip
tcl-933ddfa420f7307316da52c6d8d0b3f705851fce.tar.gz
tcl-933ddfa420f7307316da52c6d8d0b3f705851fce.tar.bz2
size_t -> Tcl_Size (twice)
Diffstat (limited to 'generic')
-rw-r--r--generic/tclIO.h2
-rw-r--r--generic/tclRegexp.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclIO.h b/generic/tclIO.h
index 711863b..1077e09 100644
--- a/generic/tclIO.h
+++ b/generic/tclIO.h
@@ -220,7 +220,7 @@ typedef struct ChannelState {
* because it happened in the background. The
* value is the chanMg, if any. #219's
* companion to 'unreportedError'. */
- size_t epoch; /* Used to test validity of stored channelname
+ Tcl_Size epoch; /* Used to test validity of stored channelname
* lookup results. */
int maxPerms; /* TIP #220: Max access privileges
* the channel was created with. */
diff --git a/generic/tclRegexp.h b/generic/tclRegexp.h
index a263dfd..7929c53 100644
--- a/generic/tclRegexp.h
+++ b/generic/tclRegexp.h
@@ -37,7 +37,7 @@ typedef struct TclRegexp {
* of subexpressions. */
rm_detail_t details; /* Detailed information on match (currently
* used only for REG_EXPECT). */
- size_t refCount; /* Count of number of references to this
+ Tcl_Size refCount; /* Count of number of references to this
* compiled regexp. */
} TclRegexp;