diff options
author | 2016-09-22 00:47:19 +0000 | |
---|---|---|
committer | 2016-09-22 00:47:19 +0000 | |
commit | a929aa8621332eecdc320765782f59c04b10696f (patch) | |
tree | 9567a742baf77b4a74453b76c7b3dc491226a5cb | |
parent | include time.h for time() (diff) | |
download | wireguard-openbsd-a929aa8621332eecdc320765782f59c04b10696f.tar.xz wireguard-openbsd-a929aa8621332eecdc320765782f59c04b10696f.zip |
Fix indentation of a break statement. No binary change.
-rw-r--r-- | sys/dev/radio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/radio.c b/sys/dev/radio.c index b0dd3c4b344..5f916dfd231 100644 --- a/sys/dev/radio.c +++ b/sys/dev/radio.c @@ -1,4 +1,4 @@ -/* $OpenBSD: radio.c,v 1.10 2014/09/14 14:17:24 jsg Exp $ */ +/* $OpenBSD: radio.c,v 1.11 2016/09/22 00:47:19 jsg Exp $ */ /* $RuOBSD: radio.c,v 1.7 2001/12/04 06:03:05 tm Exp $ */ /* @@ -124,7 +124,7 @@ radioioctl(dev_t dev, u_long cmd, caddr_t data, int flags, struct proc *p) if (sc->hw_if->get_info) error = (sc->hw_if->get_info)(sc->hw_hdl, (struct radio_info *)data); - break; + break; case RIOCSINFO: if (!(flags & FWRITE)) return (EACCES); |