Add a newline to "WARNING: %s maxphys = 0 ??" so it doesn't trip up

syslogd.  Note of course it's simply much more polite and correct, too :)
This commit is contained in:
Brian Feldman 1999-10-09 05:17:05 +00:00
parent 8a28315fb6
commit 0b5c7391ba
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=52051

View File

@ -176,7 +176,7 @@ minphys(bp)
maxphys = bp->b_dev->si_iosize_max;
if(!maxphys) {
printf("WARNING: %s maxphys = 0 ??", devtoname(bp->b_dev));
printf("WARNING: %s maxphys = 0 ??\n", devtoname(bp->b_dev));
maxphys = DFLTPHYS;
bp->b_dev->si_iosize_max = DFLTPHYS;
}