Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 23 Aug 2020 20:38:10 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r364532 - head/sys/kern
Message-ID:  <202008232038.07NKcAxR028683@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202008232038.07NKcAxR028683>