]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - zone.h
use size_t more
[xonotic/darkplaces.git] / 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