From c3db9d4a1439e0144415e007599a94dde4bee01b Mon Sep 17 00:00:00 2001 From: "Bjoern A. Zeeb" Date: Sun, 16 Jan 2022 23:52:39 +0000 Subject: [PATCH] net80211: ieee80211_dump_node() cosmetics Printing %p does not need the 0x prefix and while here mark the ieee80211_node_table argument unused given we do not need it in the current incarnation of the function. Sponsored by: The FreeBSD Foundation MFC after: 3 days --- sys/net80211/ieee80211_node.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sys/net80211/ieee80211_node.c b/sys/net80211/ieee80211_node.c index 80694c650ed..3ee46df2a57 100644 --- a/sys/net80211/ieee80211_node.c +++ b/sys/net80211/ieee80211_node.c @@ -2619,9 +2619,10 @@ ieee80211_iterate_nodes(struct ieee80211_node_table *nt, } void -ieee80211_dump_node(struct ieee80211_node_table *nt, struct ieee80211_node *ni) +ieee80211_dump_node(struct ieee80211_node_table *nt __unused, + struct ieee80211_node *ni) { - printf("0x%p: mac %s refcnt %d\n", ni, + printf("%p: mac %s refcnt %d\n", ni, ether_sprintf(ni->ni_macaddr), ieee80211_node_refcnt(ni)); printf("\tauthmode %u flags 0x%x\n", ni->ni_authmode, ni->ni_flags);