svn commit: r364532 - head/sys/kern

Warner Losh imp at FreeBSD.org
Sun Aug 23 20:38:11 UTC 2020


Author: imp
Date: Sun Aug 23 20:38:10 2020
New Revision: 364532
URL: https://svnweb.freebsd.org/changeset/base/364532

Log:
  Fix another minor style glitch.
  
  Pull { to the end of the struct line rather than having them on their
  own line.

Modified:
  head/sys/kern/subr_bus.c

Modified: head/sys/kern/subr_bus.c
==============================================================================
--- head/sys/kern/subr_bus.c	Sun Aug 23 20:37:21 2020	(r364531)
+++ head/sys/kern/subr_bus.c	Sun Aug 23 20:38:10 2020	(r364532)
@@ -392,16 +392,14 @@ static struct cdevsw dev_cdevsw = {
 	.d_name =	"devctl",
 };
 
-struct dev_event_info
-{
+struct dev_event_info {
 	char *dei_data;
 	STAILQ_ENTRY(dev_event_info) dei_link;
 };
 
 STAILQ_HEAD(devq, dev_event_info);
 
-static struct dev_softc
-{
+static struct dev_softc {
 	int		inuse;
 	int		nonblock;
 	int		queued;


More information about the svn-src-all mailing list