summaryrefslogtreecommitdiff
path: root/sys/compat/ibcs2
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>2001-07-10 11:07:27 +0000
committerMarc Espie <espie@cvs.openbsd.org>2001-07-10 11:07:27 +0000
commiteaefb727e8150a533db152661918e42fa6fa208c (patch)
treebd4225cb82a98b08e4796a8759302652af064ea7 /sys/compat/ibcs2
parentb1ca69d62897f8b98b9e12832f1e9a61c181f658 (diff)
ANSI C does not like labels: without a statement after that.
Restore missing breaks.
Diffstat (limited to 'sys/compat/ibcs2')
-rw-r--r--sys/compat/ibcs2/ibcs2_misc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/compat/ibcs2/ibcs2_misc.c b/sys/compat/ibcs2/ibcs2_misc.c
index 94313e9d47c..aaa99ab480e 100644
--- a/sys/compat/ibcs2/ibcs2_misc.c
+++ b/sys/compat/ibcs2/ibcs2_misc.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ibcs2_misc.c,v 1.17 2001/01/23 05:48:05 csapuntz Exp $ */
+/* $OpenBSD: ibcs2_misc.c,v 1.18 2001/07/10 11:07:25 espie Exp $ */
/* $NetBSD: ibcs2_misc.c,v 1.23 1997/01/15 01:37:49 perry Exp $ */
/*
@@ -1119,6 +1119,7 @@ ibcs2_sys_sysfs(p, v, retval)
case IBCS2_GETFSIND:
case IBCS2_GETFSTYP:
case IBCS2_GETNFSTYP:
+ break;
}
return EINVAL; /* XXX - TODO */
}