summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2016-09-22 00:47:20 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2016-09-22 00:47:20 +0000
commitab4aac88dab9db91ece995c859d5cd48b2ddeb6d (patch)
tree25f449cd6057cc02a8af2e0196a7de7cfcd7d5d7 /sys/dev
parent31b4ec7e6c4b5fbfbcfad47b842ab64f3416a939 (diff)
Fix indentation of a break statement. No binary change.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/radio.c4
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);