summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-image-gif.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-image-gif.c')
-rw-r--r--epan/dissectors/packet-image-gif.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-image-gif.c b/epan/dissectors/packet-image-gif.c
index 0a9ae02919..dbffbf3e48 100644
--- a/epan/dissectors/packet-image-gif.c
+++ b/epan/dissectors/packet-image-gif.c
@@ -135,7 +135,7 @@ static gint ett_image = -1;
*/
static gint
-dissect_gif(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree)
+dissect_gif(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data _U_)
{
proto_item *ti;
proto_tree *gif_tree; /* Main GIF tree */
@@ -423,9 +423,9 @@ dissect_gif(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree)
}
static gboolean
-dissect_gif_heur(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
+dissect_gif_heur(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data _U_)
{
- return dissect_gif(tvb, pinfo, tree) > 0;
+ return dissect_gif(tvb, pinfo, tree, NULL) > 0;
}