summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2001-05-10 17:02:35 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2001-05-10 17:02:35 +0000
commit650b9ab54fbaaebd2cd9d311d67475d60766be86 (patch)
tree53c621dc6fd970fede2d0a869ae71ace94091eaf /sys
parent057c0da532eebde4f74992433769b23a0daa9362 (diff)
fix typo introduced in non-UVM case yesterday
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/hp300/hp300/machdep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hp300/hp300/machdep.c b/sys/arch/hp300/hp300/machdep.c
index 7ba07a944bf..4251ec36e62 100644
--- a/sys/arch/hp300/hp300/machdep.c
+++ b/sys/arch/hp300/hp300/machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: machdep.c,v 1.44 2001/05/10 01:34:54 millert Exp $ */
+/* $OpenBSD: machdep.c,v 1.45 2001/05/10 17:02:34 millert Exp $ */
/* $NetBSD: machdep.c,v 1.121 1999/03/26 23:41:29 mycroft Exp $ */
/*
@@ -432,7 +432,7 @@ cpu_startup()
ptoa(uvmexp.free)/1024);
#else
printf("avail mem = %lu (%uK)\n", ptoa(cnt.v_free_count),
- ptoa(cnt.v_free_count)/1024));
+ ptoa(cnt.v_free_count)/1024);
#endif
printf("using %d buffers containing %u bytes (%uK) of memory\n",
nbuf, bufpages * PAGE_SIZE, bufpages * PAGE_SIZE / 1024);