diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2009-11-25 23:21:00 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2009-11-25 23:21:00 +0000 |
commit | a52fd6eebd2b388f9a82495a72a44e75eef968dd (patch) | |
tree | c718adfc672e641ec5590a52a340e6c067d99ba5 | |
parent | 19e0c7b679935f04b63a4f43433127e42a730390 (diff) |
Fix typo.
ok kettenis@
-rw-r--r-- | sys/arch/hppa64/hppa64/machdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hppa64/hppa64/machdep.c b/sys/arch/hppa64/hppa64/machdep.c index 70cd7295598..1ab8d87faca 100644 --- a/sys/arch/hppa64/hppa64/machdep.c +++ b/sys/arch/hppa64/hppa64/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.19 2009/08/11 19:17:16 miod Exp $ */ +/* $OpenBSD: machdep.c,v 1.20 2009/11/25 23:20:59 jsing Exp $ */ /* * Copyright (c) 2005 Michael Shalayeff @@ -377,7 +377,7 @@ cpu_startup(void) */ printf("%s%s\n", version, cpu_model); printf("real mem = %lu (%luMB)\n", ptoa((psize_t)physmem), - ptoa((psize_t)phsymem) / 1024 / 1024); + ptoa((psize_t)physmem) / 1024 / 1024); printf("rsvd mem = %u (%uKB)\n", ptoa(resvmem), ptoa(resvmem) / 1024); printf("here3\n"); |