Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/scsipi delint: can't have an empty case item at the ...



details:   https://anonhg.NetBSD.org/src/rev/f4a030ea6840
branches:  trunk
changeset: 509907:f4a030ea6840
user:      lukem <lukem%NetBSD.org@localhost>
date:      Tue May 15 13:53:20 2001 +0000

description:
delint: can't have an empty case item at the end of a switch; need a ; at least

diffstat:

 sys/dev/scsipi/atapi_wdc.c |  3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diffs (17 lines):

diff -r a52db0425afa -r f4a030ea6840 sys/dev/scsipi/atapi_wdc.c
--- a/sys/dev/scsipi/atapi_wdc.c        Tue May 15 13:49:56 2001 +0000
+++ b/sys/dev/scsipi/atapi_wdc.c        Tue May 15 13:53:20 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: atapi_wdc.c,v 1.40 2001/04/25 17:53:38 bouyer Exp $    */
+/*     $NetBSD: atapi_wdc.c,v 1.41 2001/05/15 13:53:20 lukem Exp $     */
 
 /*
  * Copyright (c) 1998 Manuel Bouyer.
@@ -380,6 +380,7 @@
 
        default:
                /* Not supported, nothing to do. */
+               ;
        }
 }
 



Home | Main Index | Thread Index | Old Index