From a33d27a19b6afcde0bf811b9363f8c95ae988031 Mon Sep 17 00:00:00 2001 From: Alexis La Goutte Date: Fri, 22 Jun 2018 11:50:40 +0000 Subject: [PATCH] =?UTF-8?q?drb:=20fix=20no=20previous=20prototype=20for=20?= =?UTF-8?q?=E2=80=98proto=5Fregister=5Fdrb/proto=5Freg=5Fhandoff=5Fdrb?= =?UTF-8?q?=E2=80=99=20[-Wmissing-prototypes]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: Ib42c8cc9fa04bace49905c7f6cbc49b673376bdf Reviewed-on: https://code.wireshark.org/review/28385 Petri-Dish: Alexis La Goutte Tested-by: Petri Dish Buildbot Reviewed-by: Dario Lombardo --- epan/dissectors/packet-drb.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/epan/dissectors/packet-drb.c b/epan/dissectors/packet-drb.c index ea2ba8e63d..598a7375a9 100644 --- a/epan/dissectors/packet-drb.c +++ b/epan/dissectors/packet-drb.c @@ -22,6 +22,9 @@ static int hf_drb_len = -1; static gint ett_drb = -1; static gint ett_ref = -1; +void proto_register_drb(void); +void proto_reg_handoff_drb(void); + static void dissect_drb_object(tvbuff_t* tvb, packet_info* pinfo, proto_tree* tree, gint* offset, const gchar* label) { guint32 len;