summaryrefslogtreecommitdiffstats
path: root/sbin/scsi/scsi.c
diff options
context:
space:
mode:
Diffstat (limited to 'sbin/scsi/scsi.c')
-rw-r--r--sbin/scsi/scsi.c6
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;
}