Get rid of one remaining Booleans-as-encoding-argument in a

proto_tree_add_item() call.

svn path=/trunk/; revision=42527
This commit is contained in:
Guy Harris 2012-05-09 22:14:03 +00:00
parent e0e5f597d4
commit 843f041270
1 changed files with 1 additions and 1 deletions

View File

@ -5788,7 +5788,7 @@ decode_docsis_request_transmission_policy(tvbuff_t *tvb, guint32 offset, proto_t
{ 0, NULL }
};
item = proto_tree_add_item (tree, hf, tvb, offset, 4, FALSE);
item = proto_tree_add_item (tree, hf, tvb, offset, 4, ENC_BIG_ENDIAN);
drtp_tree = proto_item_add_subtree(item, ett_docsis_request_transmission_policy);
for (i = 0 ; i <= 8; i++) {
if (policy & drtp_vals[i].value) {