summaryrefslogtreecommitdiffstats
path: root/sys/dev/null
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2000-10-06 00:46:29 +0000
committerjhb <jhb@FreeBSD.org>2000-10-06 00:46:29 +0000
commit27c334b71b655edff8dedc7ea4a00ed861740994 (patch)
treef1dd75fc6fb33291e49d736f4b8bef5c7b6ad91e /sys/dev/null
parent1d6af62c193d431cd84516f1b4cb625522036c3e (diff)
downloadFreeBSD-src-27c334b71b655edff8dedc7ea4a00ed861740994.zip
FreeBSD-src-27c334b71b655edff8dedc7ea4a00ed861740994.tar.gz
During a verbose boot, call the null device 'null' rather than 'null0' to
be more consistent with the rest of the kernel.
Diffstat (limited to 'sys/dev/null')
-rw-r--r--sys/dev/null/null.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/null/null.c b/sys/dev/null/null.c
index 8974d71..865ee5c 100644
--- a/sys/dev/null/null.c
+++ b/sys/dev/null/null.c
@@ -111,7 +111,7 @@ null_modevent(module_t mod, int type, void *data)
switch(type) {
case MOD_LOAD:
if (bootverbose)
- printf("null0: <null device, zero device>\n");
+ printf("null: <null device, zero device>\n");
zbuf = (void *)malloc(PAGE_SIZE, M_TEMP, M_WAITOK);
bzero(zbuf, PAGE_SIZE);
zero_dev = make_dev(&zero_cdevsw, ZERO_MINOR, UID_ROOT,
OpenPOWER on IntegriCloud