diff options
| author | Richard Brooksby | 2002-05-24 13:59:00 +0100 |
|---|---|---|
| committer | Richard Brooksby | 2002-05-24 13:59:00 +0100 |
| commit | 5ec2be2c04e4aa5271611e76e954eeeeba6688f6 (patch) | |
| tree | 145f227b9ee053a495abd16fe4a8fff87ba2f807 /mps/code | |
| parent | 012e6993ccba4508528579a41a9908eb60bd702e (diff) | |
| download | emacs-5ec2be2c04e4aa5271611e76e954eeeeba6688f6.tar.gz emacs-5ec2be2c04e4aa5271611e76e954eeeeba6688f6.zip | |
Fixing minor printf format type mismatch in amcss.c.
Copied from Perforce
Change: 29470
ServerID: perforce.ravenbrook.com
Diffstat (limited to 'mps/code')
| -rw-r--r-- | mps/code/amcss.c | 6 |
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 | ||