aboutsummaryrefslogtreecommitdiff
path: root/sys/net/if.c
diff options
context:
space:
mode:
authorBrooks Davis <brooks@FreeBSD.org>2018-03-27 18:55:39 +0000
committerBrooks Davis <brooks@FreeBSD.org>2018-03-27 18:55:39 +0000
commitf8f65519d2e1696af7c557e72257fdf33fe3b72c (patch)
tree4fd521d12953790b8e8dcfedea03259c556fb0d8 /sys/net/if.c
parentf1eff3f786324420be7f5e127a150f77a600a9c1 (diff)
downloadsrc-f8f65519d2e1696af7c557e72257fdf33fe3b72c.tar.gz
src-f8f65519d2e1696af7c557e72257fdf33fe3b72c.zip
Fix a whitespace bug missed in refactoring prior to r331641.
MFC with: r331641
Notes
Notes: svn path=/head/; revision=331644
Diffstat (limited to 'sys/net/if.c')
-rw-r--r--sys/net/if.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/if.c b/sys/net/if.c
index 482f9e842d93..4196b98a3e0f 100644
--- a/sys/net/if.c
+++ b/sys/net/if.c
@@ -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
};