diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2001-07-04 22:53:27 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2001-07-04 22:53:27 +0000 |
commit | be2244a12236abff46d40f00fe2b19a83ef0b53a (patch) | |
tree | 9e3e4e72666041d8b70c8bddba19b74470b67211 /sys/dev/ic/twe.c | |
parent | f3ef27fb934a928f071f60eb897e858387388e64 (diff) |
case labels without statements are not permitted by ANSI C... and gcc 3.0
warns about them.
Diffstat (limited to 'sys/dev/ic/twe.c')
-rw-r--r-- | sys/dev/ic/twe.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/ic/twe.c b/sys/dev/ic/twe.c index cb5f44169b3..ec8e93f43c1 100644 --- a/sys/dev/ic/twe.c +++ b/sys/dev/ic/twe.c @@ -1,4 +1,4 @@ -/* $OpenBSD: twe.c,v 1.11 2001/05/18 17:09:09 mickey Exp $ */ +/* $OpenBSD: twe.c,v 1.12 2001/07/04 22:53:24 espie Exp $ */ /* * Copyright (c) 2000, 2001 Michael Shalayeff. All rights reserved. @@ -640,6 +640,7 @@ twe_done(sc, idx) break; default: /* no data */ + break; } } |