diff options
author | 2002-11-03 01:59:28 +0000 | |
---|---|---|
committer | 2002-11-03 01:59:28 +0000 | |
commit | 04aaae9bdcd5d84c71fdf9543674683759e09bf6 (patch) | |
tree | 31a9326e1700cfa9eecd8cc76a29215c6e064890 | |
parent | Include string.h to get memcpy() prototype; OK marc@ (diff) | |
download | wireguard-openbsd-04aaae9bdcd5d84c71fdf9543674683759e09bf6.tar.xz wireguard-openbsd-04aaae9bdcd5d84c71fdf9543674683759e09bf6.zip |
Missing word in buffers size line.
-rw-r--r-- | sys/arch/sparc64/sparc64/machdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc64/sparc64/machdep.c b/sys/arch/sparc64/sparc64/machdep.c index 17cd424fea0..8d027cf2321 100644 --- a/sys/arch/sparc64/sparc64/machdep.c +++ b/sys/arch/sparc64/sparc64/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.52 2002/10/29 18:30:21 art Exp $ */ +/* $OpenBSD: machdep.c,v 1.53 2002/11/03 01:59:28 miod Exp $ */ /* $NetBSD: machdep.c,v 1.108 2001/07/24 19:30:14 eeh Exp $ */ /*- @@ -367,7 +367,7 @@ cpu_startup() pmapdebug = opmapdebug; #endif printf("avail memory = %ld\n", (long)uvmexp.free * PAGE_SIZE); - printf("using %d buffers containing %ld of memory\n", nbuf, + printf("using %d buffers containing %ld bytes of memory\n", nbuf, (long)bufpages * PAGE_SIZE); /* |