svn commit: r331644 - head/sys/net

Brooks Davis brooks at FreeBSD.org
Tue Mar 27 18:55:40 UTC 2018


Author: brooks
Date: Tue Mar 27 18:55:39 2018
New Revision: 331644
URL: https://svnweb.freebsd.org/changeset/base/331644

Log:
  Fix a whitespace bug missed in refactoring prior to r331641.
  
  MFC with:	r331641

Modified:
  head/sys/net/if.c

Modified: head/sys/net/if.c
==============================================================================
--- head/sys/net/if.c	Tue Mar 27 18:52:27 2018	(r331643)
+++ head/sys/net/if.c	Tue Mar 27 18:55:39 2018	(r331644)
@@ -138,9 +138,9 @@ CTASSERT(__offsetof(struct ifreq, ifr_ifru) ==
 #endif
 
 union ifreq_union {
-		struct ifreq	ifr;
+	struct ifreq	ifr;
 #ifdef COMPAT_FREEBSD32
-		struct ifreq32	ifr32;
+	struct ifreq32	ifr32;
 #endif
 };
 


More information about the svn-src-all mailing list