From 190a74cbf9792407ff3fc9abc9654f933fdeda8a Mon Sep 17 00:00:00 2001 From: havoc Date: Tue, 5 Jul 2005 09:21:21 +0000 Subject: [PATCH] use size_t more git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@5493 d7cf8633-e32d-0410-b094-e92efae38249 --- zone.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/zone.h b/zone.h index 1d411847..74f20c6d 100644 --- a/zone.h +++ b/zone.h @@ -98,11 +98,11 @@ typedef struct mempool_s // POOLFLAG_* int flags; // total memory allocated in this pool (inside memheaders) - int totalsize; + size_t totalsize; // total memory allocated in this pool (actual malloc total) - int realsize; + size_t realsize; // updated each time the pool is displayed by memlist, shows change from previous time (unless pool was freed) - int lastchecksize; + size_t lastchecksize; // name of the pool char name[POOLNAMESIZE]; // linked into global mempool list -- 2.39.2