From 367cfe5f5e5222a5691c92ec63b204dc79af03df Mon Sep 17 00:00:00 2001 From: delphij Date: Wed, 16 May 2012 20:06:17 +0000 Subject: [PATCH] MFC r234245: Eliminate an unused parameter of static method igmp_stats_live_old(). git-svn-id: svn://svn.freebsd.org/base/stable/8@235518 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f --- usr.bin/netstat/inet.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.bin/netstat/inet.c b/usr.bin/netstat/inet.c index 9484bab5e..e998856ce 100644 --- a/usr.bin/netstat/inet.c +++ b/usr.bin/netstat/inet.c @@ -1052,7 +1052,7 @@ icmp_stats(u_long off, const char *name, int af1 __unused, int proto __unused) * Dump IGMP statistics structure (pre 8.x kernel). */ static void -igmp_stats_live_old(u_long off, const char *name) +igmp_stats_live_old(const char *name) { struct oigmpstat oigmpstat, zerostat; size_t len = sizeof(oigmpstat); @@ -1112,7 +1112,7 @@ igmp_stats(u_long off, const char *name, int af1 __unused, int proto __unused) return; } if (len < sizeof(igmpstat)) { - igmp_stats_live_old(off, name); + igmp_stats_live_old(name); return; } } -- 2.45.0