Author: ed
Date: Fri Feb 10 14:55:47 2012
New Revision: 231386
URL: http://svn.freebsd.org/changeset/base/231386
Log:
Remove unneeded newline. It fits in 80 columns now.
Pointed out by: jh
Modified:
head/sys/kern/kern_conf.c
Modified: head/sys/kern/kern_conf.c
==============================================================================
--- head/sys/kern/kern_conf.c Fri Feb 10 13:51:02 2012 (r231385)
+++ head/sys/kern/kern_conf.c Fri Feb 10 14:55:47 2012 (r231386)
@@ -690,8 +690,7 @@ prep_devname(struct cdev *dev, const cha
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);
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "[email protected]"