Module Name:    src
Committed By:   skrll
Date:           Thu Jan  2 16:52:55 UTC 2020

Modified Files:
        src/sys/kern: tty.c

Log Message:
KNF


To generate a diff of this commit:
cvs rdiff -u -r1.282 -r1.283 src/sys/kern/tty.c

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

Modified files:

Index: src/sys/kern/tty.c
diff -u src/sys/kern/tty.c:1.282 src/sys/kern/tty.c:1.283
--- src/sys/kern/tty.c:1.282	Thu Jan  2 16:51:54 2020
+++ src/sys/kern/tty.c	Thu Jan  2 16:52:55 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: tty.c,v 1.282 2020/01/02 16:51:54 skrll Exp $	*/
+/*	$NetBSD: tty.c,v 1.283 2020/01/02 16:52:55 skrll Exp $	*/
 
 /*-
  * Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -63,7 +63,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: tty.c,v 1.282 2020/01/02 16:51:54 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: tty.c,v 1.283 2020/01/02 16:52:55 skrll Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_compat_netbsd.h"
@@ -2981,7 +2981,7 @@ ttysigintr(void *cookie)
 		pgrp = tp->t_pgrp;
 		sess = tp->t_session;
 		lflag = tp->t_lflag;
-		if  (sig == SIGINFO) {
+		if (sig == SIGINFO) {
 			if (ISSET(tp->t_state, TS_SIGINFO)) {
 				/* Via ioctl: ignore tty option. */
 				tp->t_state &= ~TS_SIGINFO;

Reply via email to