aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-epl.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2015-10-26 18:30:46 +0100
committerMichael Mann <mmann78@netscape.net>2015-10-26 20:48:37 +0000
commitd141562efb18f777c122405941bd5ef8c21513b1 (patch)
tree6455d902b588b4b9e363f84d37242e24f7fb7a28 /epan/dissectors/packet-epl.c
parente65507d57587e78ff3afb973c86e0bb5782b47c1 (diff)
EPL: fix no previous prototype for epl_[gs]et_sequence_nr [-Wmissing-prototypes]
Change-Id: I794a26bd21494532629035a7d23751235ecec3db Reviewed-on: https://code.wireshark.org/review/11289 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Reviewed-by: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/dissectors/packet-epl.c')
-rw-r--r--epan/dissectors/packet-epl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-epl.c b/epan/dissectors/packet-epl.c
index f907023afc..dd6fcba3f8 100644
--- a/epan/dissectors/packet-epl.c
+++ b/epan/dissectors/packet-epl.c
@@ -1659,7 +1659,7 @@ gboolean show_soc_flags = FALSE;
/* Define the tap for epl */
/*static gint epl_tap = -1;*/
-guint16
+static guint16
epl_get_sequence_nr(packet_info *pinfo)
{
guint16 seqnum = 0x00;
@@ -1673,7 +1673,7 @@ epl_get_sequence_nr(packet_info *pinfo)
return seqnum;
}
-void
+static void
epl_set_sequence_nr(packet_info *pinfo, guint16 seqnum)
{
if ( p_get_proto_data ( wmem_file_scope(), pinfo, proto_epl, ETHERTYPE_EPL_V2 ) != NULL )