summaryrefslogtreecommitdiff
path: root/sys/dev/ic/pdq.c
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>2001-07-04 22:53:27 +0000
committerMarc Espie <espie@cvs.openbsd.org>2001-07-04 22:53:27 +0000
commitbe2244a12236abff46d40f00fe2b19a83ef0b53a (patch)
tree9e3e4e72666041d8b70c8bddba19b74470b67211 /sys/dev/ic/pdq.c
parentf3ef27fb934a928f071f60eb897e858387388e64 (diff)
case labels without statements are not permitted by ANSI C... and gcc 3.0
warns about them.
Diffstat (limited to 'sys/dev/ic/pdq.c')
-rw-r--r--sys/dev/ic/pdq.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/ic/pdq.c b/sys/dev/ic/pdq.c
index 1e22589dbbe..36f23a3ef3e 100644
--- a/sys/dev/ic/pdq.c
+++ b/sys/dev/ic/pdq.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pdq.c,v 1.9 1999/11/23 04:49:29 jason Exp $ */
+/* $OpenBSD: pdq.c,v 1.10 2001/07/04 22:53:26 espie Exp $ */
/* $NetBSD: pdq.c,v 1.9 1996/10/13 01:37:26 christos Exp $ */
/*-
@@ -531,6 +531,7 @@ pdq_queue_commands(
break;
}
default:
+ break;
}
/*
* At this point the command is done. All that needs to be done is to
@@ -1238,6 +1239,7 @@ pdq_run(
case PDQS_RING_MEMBER: {
}
default:
+ break;
}
}