diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2001-08-19 06:15:47 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2001-08-19 06:15:47 +0000 |
commit | 9c8414aa0e8af0f873e434935d5e3210c4862aa9 (patch) | |
tree | 2a9663834f814681276354458a75798bd198fc10 /sys | |
parent | 0819e631467e41e786518a62bd988d40dae14fbe (diff) |
Unsmoke drugs.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/sparc64/sparc64/machdep.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/sparc64/sparc64/machdep.c b/sys/arch/sparc64/sparc64/machdep.c index 4896d4708d5..22f2eb96074 100644 --- a/sys/arch/sparc64/sparc64/machdep.c +++ b/sys/arch/sparc64/sparc64/machdep.c @@ -316,9 +316,9 @@ cpu_startup() #ifdef DEBUG pmapdebug = opmapdebug; #endif - printf("avail memory = %s\n", uvmexp.free); - printf("using %d buffers containing %s of memory\n", nbuf, - bufpages * PAGE_SIZE); + printf("avail memory = %ld\n", (long)uvmexp.free * PAGE_SIZE); + printf("using %d buffers containing %ld of memory\n", nbuf, + (long)bufpages * PAGE_SIZE); /* * Set up buffers, so they can be used to read disk labels. |