From c3309b3b97c953f8279508043ec38890b90671c1 Mon Sep 17 00:00:00 2001 From: Alexis La Goutte Date: Thu, 14 Apr 2016 10:01:13 +0200 Subject: [PATCH] 802.11: Display Power Capability (min and max) in Decimal (and Hexa) Change-Id: I6ca22bcd7d9a04b2d16f29d3a619ef86a2795eb2 Reviewed-on: https://code.wireshark.org/review/14909 Petri-Dish: Alexis La Goutte Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman --- epan/dissectors/packet-ieee80211.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/epan/dissectors/packet-ieee80211.c b/epan/dissectors/packet-ieee80211.c index 642655ce33..757e5220ac 100644 --- a/epan/dissectors/packet-ieee80211.c +++ b/epan/dissectors/packet-ieee80211.c @@ -24392,12 +24392,12 @@ proto_register_ieee80211 (void) {&hf_ieee80211_tag_power_capability_min, {"Minimum Transmit Power", "wlan_mgt.powercap.min", - FT_UINT8, BASE_HEX, NULL, 0, + FT_UINT8, BASE_DEC_HEX, NULL, 0, "The nominal minimum transmit power with which the STA is capable of transmitting in the current channel", HFILL }}, {&hf_ieee80211_tag_power_capability_max, {"Maximum Transmit Power", "wlan_mgt.powercap.max", - FT_UINT8, BASE_HEX, NULL, 0, + FT_UINT8, BASE_DEC_HEX, NULL, 0, "The nominal maximum transmit power with which the STA is capable of transmitting in the current channel", HFILL }}, {&hf_ieee80211_tag_tpc_report_trsmt_pow,