summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--generic/regguts.h2
-rw-r--r--generic/tclRegexp.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/generic/regguts.h b/generic/regguts.h
index 9db4494..b3dbaa4 100644
--- a/generic/regguts.h
+++ b/generic/regguts.h
@@ -381,7 +381,7 @@ struct subre {
*/
struct fns {
- void (*free)(regex_t *);
+ void (*free) (regex_t *);
};
/*
diff --git a/generic/tclRegexp.h b/generic/tclRegexp.h
index 3b2433e..a263dfd 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). */
- int refCount; /* Count of number of references to this
+ size_t refCount; /* Count of number of references to this
* compiled regexp. */
} TclRegexp;