aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dis-fields.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-dis-fields.c')
-rw-r--r--epan/dissectors/packet-dis-fields.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-dis-fields.c b/epan/dissectors/packet-dis-fields.c
index 6c7ba4b7e7..8cb40843b3 100644
--- a/epan/dissectors/packet-dis-fields.c
+++ b/epan/dissectors/packet-dis-fields.c
@@ -823,10 +823,10 @@ gint parseField_Enum(tvbuff_t *tvb, proto_tree *tree, gint offset, DIS_ParserNod
if (dis_hf_id != -1) {
#if 0
- pi = proto_tree_add_item(tree, dis_hf_id, tvb, offset, numBytes, FALSE);
+ pi = proto_tree_add_item(tree, dis_hf_id, tvb, offset, numBytes, ENC_BIG_ENDIAN);
proto_item_set_text(pi, "%s = %s", parserNode.fieldLabel, enumStr);
#else
- proto_tree_add_item(tree, dis_hf_id, tvb, offset, numBytes, FALSE);
+ proto_tree_add_item(tree, dis_hf_id, tvb, offset, numBytes, ENC_BIG_ENDIAN);
#endif
}
else {