diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2005-11-12 00:23:44 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2005-11-12 00:23:44 +0000 |
commit | 6c2ade453d7df6c3b0cecbfb9c994cd0a335849d (patch) | |
tree | 7968bf67b9a5b94ef31050deb600718acdf98056 | |
parent | 0e13bd5c0ba9e9332e57b6339384465e3c24449b (diff) |
print memory the same way as it is done on i386/amd64.
-rw-r--r-- | sys/arch/macppc/macppc/machdep.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/macppc/macppc/machdep.c b/sys/arch/macppc/macppc/machdep.c index 589fc638f40..f3ca919a27e 100644 --- a/sys/arch/macppc/macppc/machdep.c +++ b/sys/arch/macppc/macppc/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.81 2005/10/30 22:29:02 kettenis Exp $ */ +/* $OpenBSD: machdep.c,v 1.82 2005/11/12 00:23:43 drahn Exp $ */ /* $NetBSD: machdep.c,v 1.4 1996/10/16 19:33:11 ws Exp $ */ /* @@ -567,8 +567,8 @@ cpu_startup() printf("avail mem = %ld (%ldK)\n", ptoa(uvmexp.free), ptoa(uvmexp.free) / 1024); - printf("using %d buffers containing %d bytes of memory\n", nbuf, - bufpages * PAGE_SIZE); + printf("using %u buffers containing %u bytes (%uK) of memory\n", + nbuf, bufpages * PAGE_SIZE, bufpages * PAGE_SIZE / 1024); /* * Set up the buffers. |