97aa039
--- src/MapIO.c.orig	2005-03-05 09:20:04.000000000 -0700
97aa039
+++ src/MapIO.c	2011-03-14 10:15:33.166949366 -0600
97aa039
@@ -93,7 +93,7 @@
97aa039
   // compression step 1: read compressed data from disk
97aa039
   // FIXME: what would be nicer is to only allocate as much mem as used on disk.
97aa039
   size = LEVEL_COUNT * map.w * map.h;
97aa039
-  printf("size %u\n", size);
97aa039
+  printf("size %zu\n", size);
97aa039
   fflush(stdout);
97aa039
   if(!(read_buff = (Uint16 *) malloc(sizeof(Uint16) * size))) {
97aa039
     fprintf(stderr, "Out of memory on map read.");