Skip to content

Commit

Permalink
fixed the number of arguments to compile it
Browse files Browse the repository at this point in the history
  • Loading branch information
suz committed Feb 9, 2003
1 parent 22ad40d commit 31743ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions freebsd5/usr.bin/netstat/main.c
Expand Up @@ -677,12 +677,12 @@ printproto(tp, name)
#ifdef IPSEC
static void ipsec_stats0 (u_long off __unused, char *name, int af __unused)
{
ipsec_stats(off, name);
ipsec_stats(off, name, af);
}

static void pfkey_stats0 (u_long off __unused, char *name, int af __unused)
{
pfkey_stats(off, name);
pfkey_stats(off, name, af);
}
#endif

Expand Down

0 comments on commit 31743ee

Please sign in to comment.