Fix another minor style glitch.

Pull { to the end of the struct line rather than having them on their
own line.
This commit is contained in:
Warner Losh 2020-08-23 20:38:10 +00:00
parent f3eb12e4a6
commit 9b1f6cfc63
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=364532

View File

@ -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;