summaryrefslogtreecommitdiff
path: root/plugins/wimax/msg_dcd.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2011-10-18 00:17:48 +0000
committerBill Meier <wmeier@newsguy.com>2011-10-18 00:17:48 +0000
commitcca6984ab92ee0aa9cc08c719573d9ed8d1d0bf7 (patch)
tree75d3b0c7b336504eea1138b084d16ac1604609f8 /plugins/wimax/msg_dcd.c
parent3a64aed966fa79d5f715682cee5f6f42a31a15b9 (diff)
downloadwireshark-cca6984ab92ee0aa9cc08c719573d9ed8d1d0bf7.tar.gz
Do some more conversions of proto_tree_add_item() 'encoding' arg
(previously missed). svn path=/trunk/; revision=39450
Diffstat (limited to 'plugins/wimax/msg_dcd.c')
-rw-r--r--plugins/wimax/msg_dcd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/wimax/msg_dcd.c b/plugins/wimax/msg_dcd.c
index a32def8c21..fd3be4ac59 100644
--- a/plugins/wimax/msg_dcd.c
+++ b/plugins/wimax/msg_dcd.c
@@ -526,7 +526,7 @@ void dissect_mac_mgmt_msg_dcd_decoder(tvbuff_t *tvb, packet_info *pinfo, proto_t
proto_item *tlv_item = NULL;
tlv_tree = add_tlv_subtree(&tlv_info, ett_mac_mgmt_msg_dcd_decoder, dcd_tree, hf_dcd_rss, tvb, offset, tlv_len, FALSE);
- tlv_item = proto_tree_add_item(tlv_tree, hf_dcd_rss, tvb, offset, tlv_len, FALSE);
+ tlv_item = proto_tree_add_item(tlv_tree, hf_dcd_rss, tvb, offset, tlv_len, ENC_BIG_ENDIAN);
proto_item_append_text(tlv_item, " dBm");
break;
}
@@ -536,7 +536,7 @@ void dissect_mac_mgmt_msg_dcd_decoder(tvbuff_t *tvb, packet_info *pinfo, proto_t
proto_item *tlv_item = NULL;
tlv_tree = add_tlv_subtree(&tlv_info, ett_mac_mgmt_msg_dcd_decoder, dcd_tree, hf_dcd_eirxp, tvb, offset, tlv_len, FALSE);
- tlv_item = proto_tree_add_item(tlv_tree, hf_dcd_eirxp, tvb, offset, tlv_len, FALSE);
+ tlv_item = proto_tree_add_item(tlv_tree, hf_dcd_eirxp, tvb, offset, tlv_len, ENC_BIG_ENDIAN);
proto_item_append_text(tlv_item, " dBm");
break;
}
@@ -578,7 +578,7 @@ void dissect_mac_mgmt_msg_dcd_decoder(tvbuff_t *tvb, packet_info *pinfo, proto_t
case DCD_SIZE_CQICH_ID:
{
tlv_tree = add_tlv_subtree(&tlv_info, ett_mac_mgmt_msg_dcd_decoder, dcd_tree, hf_dcd_size_cqich_id, tvb, offset, tlv_len, FALSE);
- proto_tree_add_item(tlv_tree, hf_dcd_size_cqich_id, tvb, offset, tlv_len, FALSE);
+ proto_tree_add_item(tlv_tree, hf_dcd_size_cqich_id, tvb, offset, tlv_len, ENC_BIG_ENDIAN);
break;
}
#endif