summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorpooka <pooka@NetBSD.org>2010-10-25 17:49:36 +0000
committerpooka <pooka@NetBSD.org>2010-10-25 17:49:36 +0000
commitac9dbb05ed6fb3c8a1c54555f44b57fbb99e59d8 (patch)
tree5679bb24b3d599cc6490bd83a2838a686ca90dc3 /sys
parent5679460fc3c7e6e278ae1ebcb1708717cc657d14 (diff)
make printed string more accurate
Diffstat (limited to 'sys')
-rw-r--r--sys/rump/librump/rumpkern/rump.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/rump/librump/rumpkern/rump.c b/sys/rump/librump/rumpkern/rump.c
index 0cbaccb1bda..c4f5b8411ef 100644
--- a/sys/rump/librump/rumpkern/rump.c
+++ b/sys/rump/librump/rumpkern/rump.c
@@ -1,4 +1,4 @@
-/* $NetBSD: rump.c,v 1.188 2010/09/07 21:11:10 pooka Exp $ */
+/* $NetBSD: rump.c,v 1.189 2010/10/25 17:49:36 pooka Exp $ */
/*
* Copyright (c) 2007 Antti Kantee. All Rights Reserved.
@@ -28,7 +28,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rump.c,v 1.188 2010/09/07 21:11:10 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rump.c,v 1.189 2010/10/25 17:49:36 pooka Exp $");
#include <sys/systm.h>
#define ELFSIZE ARCH_ELFSIZE
@@ -240,7 +240,7 @@ rump__init(int rump_version)
}
#else
if (error == 0)
- printf("NCPU limited to 1 on this host\n");
+ printf("NCPU limited to 1 on this machine architecture\n");
numcpu = 1;
#endif
rump_cpus_bootstrap(numcpu);