diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-11-21 10:15:24 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-11-21 10:15:24 (GMT) |
commit | a3271d4360790d34a08896e46f0a6a37aa344568 (patch) | |
tree | 1745e8e5096f20504655ab8f994412fe58f8eb56 /generic/tclTrace.c | |
parent | 0f3bab8aece13cfd66cca4d2e16489faaf69457b (diff) | |
download | tcl-a3271d4360790d34a08896e46f0a6a37aa344568.zip tcl-a3271d4360790d34a08896e46f0a6a37aa344568.tar.gz tcl-a3271d4360790d34a08896e46f0a6a37aa344568.tar.bz2 |
More internal use of size_t in stead of int.
Diffstat (limited to 'generic/tclTrace.c')
-rw-r--r-- | generic/tclTrace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclTrace.c b/generic/tclTrace.c index 0c73cba..bea3162 100644 --- a/generic/tclTrace.c +++ b/generic/tclTrace.c @@ -52,7 +52,7 @@ typedef struct { * invoked step trace */ int curFlags; /* Trace flags for the current command */ int curCode; /* Return code for the current command */ - int refCount; /* Used to ensure this structure is not + size_t refCount; /* Used to ensure this structure is not * deleted too early. Keeps track of how many * pieces of code have a pointer to this * structure. */ |