From 850cb24ef8316ed5d989f581bccb427f4ff50fe2 Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Sat, 31 May 2003 16:53:16 +0000 Subject: [PATCH] "break" rather than fall through to a break in the default clause. Found by: FlexeLint --- sys/kern/tty_pty.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/kern/tty_pty.c b/sys/kern/tty_pty.c index eadcf086f021..ef914df358c1 100644 --- a/sys/kern/tty_pty.c +++ b/sys/kern/tty_pty.c @@ -787,6 +787,7 @@ ptyioctl(dev, cmd, data, flag, td) #endif pti->pt_send |= TIOCPKT_IOCTL; ptcwakeup(tp, FREAD); + break; default: break; }