git: c3db9d4a1439 - main - net80211: ieee80211_dump_node() cosmetics
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 17 Jan 2022 00:02:11 UTC
The branch main has been updated by bz: URL: https://cgit.FreeBSD.org/src/commit/?id=c3db9d4a1439e0144415e007599a94dde4bee01b commit c3db9d4a1439e0144415e007599a94dde4bee01b Author: Bjoern A. Zeeb <bz@FreeBSD.org> AuthorDate: 2022-01-16 23:52:39 +0000 Commit: Bjoern A. Zeeb <bz@FreeBSD.org> CommitDate: 2022-01-17 00:01:46 +0000 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 80694c650ed4..3ee46df2a570 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);