Remove unneeded newline. It fits in 80 columns now.

Pointed out by:	jh
This commit is contained in:
Ed Schouten 2012-02-10 14:55:47 +00:00
parent 65f171c657
commit 852b05c5b5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=231386

View File

@ -690,8 +690,7 @@ prep_devname(struct cdev *dev, const char *fmt, va_list ap)
mtx_assert(&devmtx, MA_OWNED);
len = vsnrprintf(dev->si_name, sizeof(dev->si_name), 32,
fmt, ap);
len = vsnrprintf(dev->si_name, sizeof(dev->si_name), 32, fmt, ap);
if (len > sizeof(dev->si_name) - 1)
return (ENAMETOOLONG);