summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-3g-a11.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2011-10-11 15:39:47 +0000
committerBill Meier <wmeier@newsguy.com>2011-10-11 15:39:47 +0000
commit67dda34221232aeb8d136e36cb6825b77630a7c7 (patch)
tree370ad4924921746829b38180e304f54e5c40798e /epan/dissectors/packet-3g-a11.c
parent13f39288a07baae802f2d3a7f9c261cecd910115 (diff)
downloadwireshark-67dda34221232aeb8d136e36cb6825b77630a7c7.tar.gz
Fix benign bugs wherein proto_tree_add_uint() was intended instead of proto_tree_add_item();
(Replaces changes made in SVN #39351). svn path=/trunk/; revision=39361
Diffstat (limited to 'epan/dissectors/packet-3g-a11.c')
-rw-r--r--epan/dissectors/packet-3g-a11.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-3g-a11.c b/epan/dissectors/packet-3g-a11.c
index ec5bf6cd81..c39aa5618f 100644
--- a/epan/dissectors/packet-3g-a11.c
+++ b/epan/dissectors/packet-3g-a11.c
@@ -1401,7 +1401,7 @@ dissect_a11_extensions( tvbuff_t *tvb, int offset, proto_tree *tree)
"Unknown Extension %u"));
ext_tree = proto_item_add_subtree(ti, ett_a11_ext);
- proto_tree_add_item(ext_tree, hf_a11_ext_type, tvb, offset, 1, ENC_BIG_ENDIAN);
+ proto_tree_add_uint(ext_tree, hf_a11_ext_type, tvb, offset, 1, ext_type);
offset++;
if (ext_type == SS_EXT) {