svn commit: r349289 - head/lib/libjail

Devin Teske dteske at FreeBSD.org
Sat Jun 22 15:39:36 UTC 2019


Author: dteske
Date: Sat Jun 22 15:39:34 2019
New Revision: 349289
URL: https://svnweb.freebsd.org/changeset/base/349289

Log:
  `libjail/jail.c' includes both <sys/param.h> and <sys/types.h>
  
  Latter is undesired when including <sys/param.h> according to style(9)
  
  Submitted by:	Faraz Vahedi
  Reviewed by:	cem
  Differential Revision:	https://reviews.freebsd.org/D20637

Modified:
  head/lib/libjail/jail.c

Modified: head/lib/libjail/jail.c
==============================================================================
--- head/lib/libjail/jail.c	Sat Jun 22 05:35:23 2019	(r349288)
+++ head/lib/libjail/jail.c	Sat Jun 22 15:39:34 2019	(r349289)
@@ -30,7 +30,6 @@
 __FBSDID("$FreeBSD$");
 
 #include <sys/param.h>
-#include <sys/types.h>
 #include <sys/jail.h>
 #include <sys/linker.h>
 #include <sys/socket.h>


More information about the svn-src-all mailing list