Module Name:    src
Committed By:   mrg
Date:           Fri Feb  1 08:37:21 UTC 2019

Modified Files:
        src/usr.bin/midiplay: midiplay.c

Log Message:
make a fallthru comment GCC7 compatible.


To generate a diff of this commit:
cvs rdiff -u -r1.32 -r1.33 src/usr.bin/midiplay/midiplay.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.bin/midiplay/midiplay.c
diff -u src/usr.bin/midiplay/midiplay.c:1.32 src/usr.bin/midiplay/midiplay.c:1.33
--- src/usr.bin/midiplay/midiplay.c:1.32	Thu May  3 05:14:55 2018
+++ src/usr.bin/midiplay/midiplay.c	Fri Feb  1 08:37:21 2019
@@ -1,4 +1,4 @@
-/*	$NetBSD: midiplay.c,v 1.32 2018/05/03 05:14:55 wiz Exp $	*/
+/*	$NetBSD: midiplay.c,v 1.33 2019/02/01 08:37:21 mrg Exp $	*/
 
 /*
  * Copyright (c) 1998, 2002 The NetBSD Foundation, Inc.
@@ -31,7 +31,7 @@
 #include <sys/cdefs.h>
 
 #ifndef lint
-__RCSID("$NetBSD: midiplay.c,v 1.32 2018/05/03 05:14:55 wiz Exp $");
+__RCSID("$NetBSD: midiplay.c,v 1.33 2019/02/01 08:37:21 mrg Exp $");
 #endif
 
 
@@ -677,7 +677,8 @@ playdata(u_char *buf, u_int tot, const c
 					}
 					break;
 				}
-				/* Sorry, can't do this yet; FALLTHROUGH */
+				/* Sorry, can't do this yet */
+				/* FALLTHROUGH */
 			default:
 				if (verbose)
 					printf("MIDI event 0x%02x ignored\n",

Reply via email to