diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2019-01-20 20:28:38 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2019-01-20 20:28:38 +0000 |
commit | 190d448b87e918f10fab1c0e8a9af3029e629f78 (patch) | |
tree | 4068a8bd3717b5bbac3b5cff244bf3911b5fa0df /sys/scsi/ch.c | |
parent | 919f91ad921162da58b976de0ca1fdbf96a82c8e (diff) |
No leading space(s) before labels.
Prodded by guenther@
Diffstat (limited to 'sys/scsi/ch.c')
-rw-r--r-- | sys/scsi/ch.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/scsi/ch.c b/sys/scsi/ch.c index 4b63404aa31..583c1b28a3a 100644 --- a/sys/scsi/ch.c +++ b/sys/scsi/ch.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ch.c,v 1.52 2016/03/12 15:16:04 krw Exp $ */ +/* $OpenBSD: ch.c,v 1.53 2019/01/20 20:28:37 krw Exp $ */ /* $NetBSD: ch.c,v 1.26 1997/02/21 22:06:52 thorpej Exp $ */ /* @@ -240,7 +240,7 @@ chopen(dev_t dev, int flags, int fmt, struct proc *p) return (0); - bad: +bad: sc->sc_link->flags &= ~SDEV_OPEN; return (error); } @@ -610,7 +610,7 @@ ch_usergetelemstatus(struct ch_softc *sc, /* Copy array out to userspace. */ error = copyout(user_data, cesr->cesr_data, udsize); - done: +done: if (data != NULL) dma_free(data, size); if (user_data != NULL) |