Add some typecasts for intptr_t and uintptr_t value to fix gcc warnings.

This commit is contained in:
Ken Hughes
2008-09-12 05:27:02 +00:00
parent c45f1f504b
commit 3e5549213c
2 changed files with 8 additions and 8 deletions

View File

@@ -2959,7 +2959,7 @@ void do_render_seq(RenderResult *rr, int cfra)
if (max != 0 && mem_in_use + mmap_in_use > max) {
fprintf(stderr, "mem_in_use = %lu, max = %lu\n",
mem_in_use + mmap_in_use, max);
(long unsigned int)mem_in_use + mmap_in_use, (long unsigned int)max);
fprintf(stderr, "Cleaning up, please wait...\n"
"If this happens very often,\n"
"consider "