Fix some 64 bit warnings. You can't fit a pointer in an int.

This commit is contained in:
Peter Wemm 2003-10-26 04:47:31 +00:00
parent 7e9c84c757
commit a2141d7a53
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=121543

View File

@ -854,11 +854,11 @@ vinum_info(int argc, char *argv[], char *argv0[])
return;
}
printf("Total of %d blocks malloced, total memory: %d\n"
"Maximum allocs: %8d, malloc table at 0x%08x\n",
"Maximum allocs: %8d, malloc table at 0x%08lx\n",
meminfo.mallocs,
meminfo.total_malloced,
meminfo.highwater,
(int) meminfo.malloced);
(unsigned long) meminfo.malloced);
printf("%d requests active, maximum %d active\n",
vinum_conf.active,
@ -872,11 +872,11 @@ vinum_info(int argc, char *argv[], char *argv0[])
}
if (!(i & 63))
printf("Block\tSequence\t size\t address\t line\t\tfile\n\n");
printf("%6d\t%6d\t\t%6d\t0x%08x\t%6d\t\t%s\n",
printf("%6d\t%6d\t\t%6d\t0x%08lx\t%6d\t\t%s\n",
i,
malloced.seq,
malloced.size,
(int) malloced.address,
(unsigned long) malloced.address,
malloced.line,
(char *) &malloced.file);
}