altos/scheme: Use 64-bit ints to track memory allocation stats
[fw/altos] / src / scheme / ao_scheme_mem.c
index fe4bc4f548bba562cf2340636f1e67e3933ff240..45d4de98c88c69d094a64feb93c01b48b5758c0a 100644 (file)
@@ -483,9 +483,9 @@ ao_scheme_poly_mark_ref(ao_poly *p, uint8_t do_note_cons)
 }
 
 #if DBG_MEM_STATS
-int ao_scheme_collects[2];
-int ao_scheme_freed[2];
-int ao_scheme_loops[2];
+uint64_t ao_scheme_collects[2];
+uint64_t ao_scheme_freed[2];
+uint64_t ao_scheme_loops[2];
 #endif
 
 int ao_scheme_last_top;