aboutsummaryrefslogtreecommitdiffstats
path: root/epan/proto.c
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2014-08-03 13:54:30 -0400
committerEvan Huus <eapache@gmail.com>2014-08-03 17:55:51 +0000
commit3da89d6cd555e981de38a2ea352684e34c80a0ab (patch)
tree100c9d307c3904c797c9b08a1a92894068d98c10 /epan/proto.c
parent0996730b91fddbf8aa7c61730a50da28ea1ab6a0 (diff)
Add missing macro parameter
This is what you get for forward-cherrypicking commits you made on master-1.12. Change-Id: I8e51181d497dc63c614fe623439506cfe99c6fa3 Reviewed-on: https://code.wireshark.org/review/3385 Reviewed-by: Evan Huus <eapache@gmail.com>
Diffstat (limited to 'epan/proto.c')
-rw-r--r--epan/proto.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/proto.c b/epan/proto.c
index 82429008bc..b2e878bcd5 100644
--- a/epan/proto.c
+++ b/epan/proto.c
@@ -1150,7 +1150,7 @@ proto_tree_add_subtree_format(proto_tree *tree, tvbuff_t *tvb, gint start, gint
if (tree_item != NULL)
*tree_item = (proto_item *)tree;
- TRY_TO_FAKE_THIS_ITEM(tree, hf_text_only, hfinfo);
+ TRY_TO_FAKE_THIS_ITEM(tree, hf_text_only, hfinfo, tvb);
pi = proto_tree_add_text_node(tree, tvb, start, length);