aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-spdy.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2014-08-15 09:59:14 +0200
committerAnders Broman <a.broman58@gmail.com>2014-08-18 13:12:45 +0000
commita913bdd4902f240eb1b4b9f0f0df0de323e4616f (patch)
treee4a0dcc8a18ce646dc0306148a95e7d58606d733 /epan/dissectors/packet-spdy.c
parent005a49453b24afd50978dc39bb0e11040d025444 (diff)
Fix warning: no previous prototype for ... [-Wmissing-prototypes]
Add static before function Change-Id: I42c5be7a1436160bcb82d0cb4309959802b7b3cb Reviewed-on: https://code.wireshark.org/review/3696 Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-spdy.c')
-rw-r--r--epan/dissectors/packet-spdy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-spdy.c b/epan/dissectors/packet-spdy.c
index 4c9e6d0abc..f3eaebd686 100644
--- a/epan/dissectors/packet-spdy.c
+++ b/epan/dissectors/packet-spdy.c
@@ -1508,7 +1508,7 @@ static int dissect_spdy_window_update_payload(
/*
* Performs SPDY frame dissection.
*/
-int dissect_spdy_frame(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U_)
+static int dissect_spdy_frame(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U_)
{
guint8 control_bit;
spdy_control_frame_info_t frame;