mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-19 20:30:29 -08:00
Fixing minor printf format type mismatch in amcss.c.
Copied from Perforce Change: 29470 ServerID: perforce.ravenbrook.com
This commit is contained in:
parent
012e6993cc
commit
5ec2be2c04
1 changed files with 3 additions and 3 deletions
|
|
@ -61,9 +61,9 @@ static void report(mps_arena_t arena)
|
||||||
|
|
||||||
mps_message_discard(arena, message);
|
mps_message_discard(arena, message);
|
||||||
|
|
||||||
printf("live %d\n", live);
|
printf("live %lu\n", (unsigned long)live);
|
||||||
printf("condemned %d\n", condemned);
|
printf("condemned %lu\n", (unsigned long)condemned);
|
||||||
printf("not_condemned %d\n", not_condemned);
|
printf("not_condemned %lu\n", (unsigned long)not_condemned);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue