svn commit: r367353 - head/sys/kern

Mateusz Guzik mjg at FreeBSD.org
Wed Nov 4 23:17:42 UTC 2020


Author: mjg
Date: Wed Nov  4 23:17:41 2020
New Revision: 367353
URL: https://svnweb.freebsd.org/changeset/base/367353

Log:
  pipe: whitespace nit in previous

Modified:
  head/sys/kern/sys_pipe.c

Modified: head/sys/kern/sys_pipe.c
==============================================================================
--- head/sys/kern/sys_pipe.c	Wed Nov  4 23:11:54 2020	(r367352)
+++ head/sys/kern/sys_pipe.c	Wed Nov  4 23:17:41 2020	(r367353)
@@ -1468,7 +1468,7 @@ pipe_poll(struct file *fp, int events, struct ucred *a
 				rpipe->pipe_state |= PIPE_SEL;
 		}
 
-		if ((fp->f_flag & FWRITE)!= 0) {
+		if ((fp->f_flag & FWRITE) != 0) {
 			selrecord(td, &wpipe->pipe_sel);
 			if (SEL_WAITING(&wpipe->pipe_sel))
 				wpipe->pipe_state |= PIPE_SEL;


More information about the svn-src-head mailing list