aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rmt-fec.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-rmt-fec.c
parent4052a406f3b8bd04994290c8c6e7fd0c0ad2e823 (diff)
Fix a number of proto_tree_add_item() encoding args.
svn path=/trunk/; revision=39774
Diffstat (limited to 'epan/dissectors/packet-rmt-fec.c')
-rw-r--r--epan/dissectors/packet-rmt-fec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-rmt-fec.c b/epan/dissectors/packet-rmt-fec.c
index 811c86bc2a..47f59e5272 100644
--- a/epan/dissectors/packet-rmt-fec.c
+++ b/epan/dissectors/packet-rmt-fec.c
@@ -176,7 +176,7 @@ void fec_dissector(struct _fec_ptr f, tvbuff_t *tvb, proto_tree *tree, guint *of
/* Create the FEC subtree */
if (tree)
{
- ti = proto_tree_add_item(tree, f.hf->header, tvb, *offset, -1, FALSE);
+ ti = proto_tree_add_item(tree, f.hf->header, tvb, *offset, -1, ENC_NA);
fec_tree = proto_item_add_subtree(ti, f.ett->main);
} else
{