This should work correctly with 3Go now :)

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@22034 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
François Revol 2007-08-22 10:33:23 +00:00
parent 1bb5a6b3d3
commit c09bce2271

@ -517,10 +517,10 @@ dump_cpus(system_info *info)
static void
dump_mem(system_info *info)
{
printf("%10ld bytes free (used/max %10ld / %10ld)\n",
B_PAGE_SIZE * (info->max_pages - info->used_pages),
B_PAGE_SIZE * info->used_pages,
B_PAGE_SIZE * info->max_pages);
printf("%10lu bytes free (used/max %10lu / %10lu)\n",
B_PAGE_SIZE * (uint32)(info->max_pages - info->used_pages)),
B_PAGE_SIZE * (uint32)info->used_pages,
B_PAGE_SIZE * (uint32)info->max_pages);
}