aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/netstat/route.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/netstat/route.c')
-rw-r--r--usr.bin/netstat/route.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/usr.bin/netstat/route.c b/usr.bin/netstat/route.c
index adca08a24819..1dce61556a45 100644
--- a/usr.bin/netstat/route.c
+++ b/usr.bin/netstat/route.c
@@ -233,18 +233,19 @@ pr_family(af)
* Print header for routing table columns.
*/
void
-pr_rthdr(af)
+pr_rthdr(wid_af)
+ int wid_af;
{
int wid_dst, wid_gw;
wid_dst =
#ifdef INET6
- af == AF_INET6 ? WID_DST6 :
+ wid_af == AF_INET6 ? WID_DST6 :
#endif
WID_DST;
wid_gw =
#ifdef INET6
- af == AF_INET6 ? WID_GW6 :
+ wid_af == AF_INET6 ? WID_GW6 :
#endif
WID_GW;