aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-h248_annex_c.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2011-11-09 17:33:18 +0000
committerBill Meier <wmeier@newsguy.com>2011-11-09 17:33:18 +0000
commit30cee9900941e991a3c52285dbdd0751b13a0254 (patch)
tree76f458700590551327e10da71a61e8c55cb9826f /epan/dissectors/packet-h248_annex_c.c
parent4052a406f3b8bd04994290c8c6e7fd0c0ad2e823 (diff)
Fix a number of proto_tree_add_item() encoding args.
svn path=/trunk/; revision=39774
Diffstat (limited to 'epan/dissectors/packet-h248_annex_c.c')
-rw-r--r--epan/dissectors/packet-h248_annex_c.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-h248_annex_c.c b/epan/dissectors/packet-h248_annex_c.c
index 8896f80a13..c5230b53f9 100644
--- a/epan/dissectors/packet-h248_annex_c.c
+++ b/epan/dissectors/packet-h248_annex_c.c
@@ -788,7 +788,7 @@ static void dissect_h248_annexc_NSAP(proto_tree* tree,
}
static void dissect_h248_annexc_vpvc(proto_tree* tree, tvbuff_t* tvb, packet_info* pinfo _U_, int hfid, h248_curr_info_t* h248_info _U_, void* unused _U_) {
- proto_item* pi = proto_tree_add_item(tree,hfid,tvb,0,2,FALSE);
+ proto_item* pi = proto_tree_add_item(tree,hfid,tvb,0,2,ENC_BIG_ENDIAN);
proto_tree* pt = proto_item_add_subtree(pi,ett_vpvc);
proto_tree_add_item(pt,hf_h248_pkg_annexc_vp,tvb,0,2,ENC_BIG_ENDIAN);
proto_tree_add_item(pt,hf_h248_pkg_annexc_vc,tvb,2,2,ENC_BIG_ENDIAN);