Source-Changes-HG archive

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

[src/trunk]: src/sys/compat/svr4 PR/50520: David Binderman: Fix missing breaks.



details:   https://anonhg.NetBSD.org/src/rev/46e448ccff06
branches:  trunk
changeset: 342256:46e448ccff06
user:      christos <christos%NetBSD.org@localhost>
date:      Sun Dec 13 19:47:08 2015 +0000

description:
PR/50520: David Binderman: Fix missing breaks.

diffstat:

 sys/compat/svr4/svr4_termios.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 4308da30bc25 -r 46e448ccff06 sys/compat/svr4/svr4_termios.c
--- a/sys/compat/svr4/svr4_termios.c    Sun Dec 13 19:43:27 2015 +0000
+++ b/sys/compat/svr4/svr4_termios.c    Sun Dec 13 19:47:08 2015 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: svr4_termios.c,v 1.28 2014/11/09 18:16:55 maxv Exp $    */
+/*     $NetBSD: svr4_termios.c,v 1.29 2015/12/13 19:47:08 christos Exp $        */
 
 /*-
  * Copyright (c) 1994, 2008 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: svr4_termios.c,v 1.28 2014/11/09 18:16:55 maxv Exp $");
+__KERNEL_RCSID(0, "$NetBSD: svr4_termios.c,v 1.29 2015/12/13 19:47:08 christos Exp $");
 
 #include <sys/param.h>
 #include <sys/proc.h>
@@ -182,7 +182,7 @@
 {
        switch (sp) {
 #undef getval
-#define getval(a,b)    case __CONCAT(a,b):     sp = __CONCAT3(SVR4_,a,b)
+#define getval(a,b)    case __CONCAT(a,b): sp = __CONCAT3(SVR4_,a,b); break
        getval(B,0);
        getval(B,50);
        getval(B,75);



Home | Main Index | Thread Index | Old Index