mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-29 07:42:04 +00:00
Fixed printf format mismatch problems. We acknowledge the help of
Nathan Torkington <gnat@frii.com>.
This commit is contained in:
parent
2611284982
commit
01db978aa9
@ -283,9 +283,9 @@ malloc_dump(FILE *fd)
|
||||
|
||||
/* print out various info */
|
||||
fprintf(fd,"Minsize\t%d\n",malloc_minsize);
|
||||
fprintf(fd,"Maxsize\t%d\n",malloc_maxsize);
|
||||
fprintf(fd,"Pagesize\t%d\n",malloc_pagesize);
|
||||
fprintf(fd,"Pageshift\t%d\n",malloc_pageshift);
|
||||
fprintf(fd,"Maxsize\t%ld\n",malloc_maxsize);
|
||||
fprintf(fd,"Pagesize\t%ld\n",malloc_pagesize);
|
||||
fprintf(fd,"Pageshift\t%ld\n",malloc_pageshift);
|
||||
fprintf(fd,"FirstPage\t%ld\n",malloc_origo);
|
||||
fprintf(fd,"LastPage\t%ld %lx\n",last_index+malloc_pageshift,
|
||||
(last_index + malloc_pageshift) << malloc_pageshift);
|
||||
|
Loading…
Reference in New Issue
Block a user