From 96c22acbcd9b81e20f435dc19a242d8325730f5d Mon Sep 17 00:00:00 2001 From: "Bruno G. Albuquerque" Date: Wed, 22 Aug 2007 13:03:47 +0000 Subject: [PATCH] - Fix build. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@22035 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/bin/sysinfo.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/bin/sysinfo.c b/src/bin/sysinfo.c index d9e2e65c56..df2482220a 100644 --- a/src/bin/sysinfo.c +++ b/src/bin/sysinfo.c @@ -518,7 +518,7 @@ static void dump_mem(system_info *info) { 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->max_pages); } @@ -642,4 +642,3 @@ main(int argc, char *argv[]) } return 0; } -