]> git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
use size_t more
authorhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Tue, 5 Jul 2005 09:21:21 +0000 (09:21 +0000)
committerhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Tue, 5 Jul 2005 09:21:21 +0000 (09:21 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@5493 d7cf8633-e32d-0410-b094-e92efae38249

zone.h

diff --git a/zone.h b/zone.h
index 1d4118479a7be75f6265229994924853b6451cf8..74f20c6dd30fe3b78e1d1e9193024b2c10d691c5 100644 (file)
--- 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