From 9b1f6cfc63c20b116c78115b7db356a4f5bc941d Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Sun, 23 Aug 2020 20:38:10 +0000 Subject: [PATCH] Fix another minor style glitch. Pull { to the end of the struct line rather than having them on their own line. --- sys/kern/subr_bus.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/sys/kern/subr_bus.c b/sys/kern/subr_bus.c index d3c9331358ab..6f538544ca31 100644 --- a/sys/kern/subr_bus.c +++ b/sys/kern/subr_bus.c @@ -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;