aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-sv.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2011-10-24 20:18:01 +0000
committerBill Meier <wmeier@newsguy.com>2011-10-24 20:18:01 +0000
commit470032d5cc62a5f66f5e1e05ee87df1fcc79bbfd (patch)
treee8fef1b6001a6db6b0527f373cc0905c3b9e526c /epan/dissectors/packet-sv.c
parent54b72021bbd152f07832dedd6b33bc62e3f01a0b (diff)
Fix encoding arg for a proto_tree_add_bitmask() function call.
svn path=/trunk/; revision=39540
Diffstat (limited to 'epan/dissectors/packet-sv.c')
-rw-r--r--epan/dissectors/packet-sv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-sv.c b/epan/dissectors/packet-sv.c
index 8bb49ffc08..e4ce5a3fcb 100644
--- a/epan/dissectors/packet-sv.c
+++ b/epan/dissectors/packet-sv.c
@@ -200,7 +200,7 @@ dissect_PhsMeas1(gboolean implicit_tag, packet_info *pinfo, proto_tree *tree, tv
qual = tvb_get_ntohl(tvb, offset + 4);
proto_tree_add_item(subtree, hf_sv_phmeas_instmag_i, tvb, offset, 4, ENC_BIG_ENDIAN);
- proto_tree_add_bitmask(subtree, tvb, offset + 4, hf_sv_phsmeas_q, ett_phsmeas_q, q_flags, FALSE);
+ proto_tree_add_bitmask(subtree, tvb, offset + 4, hf_sv_phsmeas_q, ett_phsmeas_q, q_flags, ENC_BIG_ENDIAN);
if (i < IEC61850_SV_MAX_PHSMEAS_ENTRIES) {
sv_data.phsMeas[i].value = value;