- Fix build.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@22035 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Bruno G. Albuquerque 2007-08-22 13:03:47 +00:00
parent c09bce2271
commit 96c22acbcd
1 changed files with 1 additions and 2 deletions

View File

@ -518,7 +518,7 @@ static void
dump_mem(system_info *info) dump_mem(system_info *info)
{ {
printf("%10lu bytes free (used/max %10lu / %10lu)\n", printf("%10lu bytes free (used/max %10lu / %10lu)\n",
B_PAGE_SIZE * (uint32)(info->max_pages - info->used_pages)), B_PAGE_SIZE * (uint32)(info->max_pages - info->used_pages),
B_PAGE_SIZE * (uint32)info->used_pages, B_PAGE_SIZE * (uint32)info->used_pages,
B_PAGE_SIZE * (uint32)info->max_pages); B_PAGE_SIZE * (uint32)info->max_pages);
} }
@ -642,4 +642,3 @@ main(int argc, char *argv[])
} }
return 0; return 0;
} }