During a verbose boot, call the null device 'null' rather than 'null0' to

be more consistent with the rest of the kernel.
This commit is contained in:
John Baldwin 2000-10-06 00:46:29 +00:00
parent a481b52ea0
commit 511652767f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=66709

View file

@ -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,