diff options
author | 2016-06-07 01:29:38 +0000 | |
---|---|---|
committer | 2016-06-07 01:29:38 +0000 | |
commit | 252fb110d292fd9dcb15c00b1d34dba43ce70757 (patch) | |
tree | 8f229692150b70f7fd783e08a41c7aca062d558d /sbin/scsi/scsi.c | |
parent | Set BN_FLG_CONSTTIME on the correct variable. beck committed wrong fix. (diff) | |
download | wireguard-openbsd-252fb110d292fd9dcb15c00b1d34dba43ce70757.tar.xz wireguard-openbsd-252fb110d292fd9dcb15c00b1d34dba43ce70757.zip |
per trending style, add continue to emtpy loop bodies.
ok mglocker
Diffstat (limited to 'sbin/scsi/scsi.c')
-rw-r--r-- | sbin/scsi/scsi.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/scsi/scsi.c b/sbin/scsi/scsi.c index a755957b07c..d419c39b87b 100644 --- a/sbin/scsi/scsi.c +++ b/sbin/scsi/scsi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: scsi.c,v 1.29 2014/11/20 15:22:39 tedu Exp $ */ +/* $OpenBSD: scsi.c,v 1.30 2016/06/07 01:29:38 tedu Exp $ */ /* $FreeBSD: scsi.c,v 1.11 1996/04/06 11:00:28 joerg Exp $ */ /* @@ -442,11 +442,11 @@ skipwhite(FILE *f) skip_again: while (isspace(c = getc(f))) - ; + continue; if (c == '#') { while ((c = getc(f)) != '\n' && c != EOF) - ; + continue; goto skip_again; } |