aboutsummaryrefslogtreecommitdiffstats
path: root/mps/code/amcss.c
diff options
context:
space:
mode:
Diffstat (limited to 'mps/code/amcss.c')
-rw-r--r--mps/code/amcss.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mps/code/amcss.c b/mps/code/amcss.c
index 7b1308edb5f..d8569c7873f 100644
--- a/mps/code/amcss.c
+++ b/mps/code/amcss.c
@@ -61,9 +61,9 @@ static void report(mps_arena_t arena)
61 61
62 mps_message_discard(arena, message); 62 mps_message_discard(arena, message);
63 63
64 printf("live %d\n", live); 64 printf("live %lu\n", (unsigned long)live);
65 printf("condemned %d\n", condemned); 65 printf("condemned %lu\n", (unsigned long)condemned);
66 printf("not_condemned %d\n", not_condemned); 66 printf("not_condemned %lu\n", (unsigned long)not_condemned);
67 } 67 }
68} 68}
69 69