From 1c987c38211e91f47d5d009468249e054a15713b Mon Sep 17 00:00:00 2001 From: dgp Date: Fri, 30 Nov 2012 15:10:11 +0000 Subject: Restore agreement between Cache and AllocCache. --- generic/tclThreadAlloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generic/tclThreadAlloc.c b/generic/tclThreadAlloc.c index 36c52a1..f754bde 100644 --- a/generic/tclThreadAlloc.c +++ b/generic/tclThreadAlloc.c @@ -106,7 +106,7 @@ typedef struct Cache { struct Cache *nextPtr; /* Linked list of cache entries */ Tcl_ThreadId owner; /* Which thread's cache is this? */ Tcl_Obj *firstObjPtr; /* List of free objects for thread */ - int numObjects; /* Number of objects for thread */ + size_t numObjects; /* Number of objects for thread */ int totalAssigned; /* Total space assigned to thread */ Bucket buckets[NBUCKETS]; /* The buckets for this thread */ } Cache; -- cgit v0.12