aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2018-09-03 18:30:40 +0000
committerAnders Broman <a.broman58@gmail.com>2018-09-03 21:08:39 +0000
commit9b2737a3ba929ee719b3db2123e42b3cc323b8f6 (patch)
tree1d135ee1091c7c1424c2f84b5804583d919d8a94 /epan
parent767f700891d8a7e4927eb7e1c0a9d4c7345ba4e9 (diff)
rtp-ed137: fix no previous prototype for function 'process_time_value/process_125us_based_value' [-Wmissing-prototypes]
Change-Id: I8be268b67cb2f49b9b7ae8e0e1ae1eebc90d6ad2 Reviewed-on: https://code.wireshark.org/review/29403 Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-rtp-ed137.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-rtp-ed137.c b/epan/dissectors/packet-rtp-ed137.c
index 8f6bf0ce8c..a291c2bc08 100644
--- a/epan/dissectors/packet-rtp-ed137.c
+++ b/epan/dissectors/packet-rtp-ed137.c
@@ -559,7 +559,7 @@ dissect_rtp_hdr_ext_ed137(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, v
time.nsecs = (usecs % 1000000) / 1000;
/* Decodes and calculates relative/absolute time item */
-void process_time_value(tvbuff_t *tvb, proto_tree *tree, int time_item, unsigned int hdrext_offset, gboolean time_relative, unsigned int time_value)
+static void process_time_value(tvbuff_t *tvb, proto_tree *tree, int time_item, unsigned int hdrext_offset, gboolean time_relative, unsigned int time_value)
{
/* Note: even there is relative/absolute flag, value is shown same way */
if (time_relative) {
@@ -593,7 +593,7 @@ void process_time_value(tvbuff_t *tvb, proto_tree *tree, int time_item, unsigned
}
/* Decodes and calculates value based on 125us tick*/
-void process_125us_based_value(tvbuff_t *tvb, proto_tree *tree, int value_item, unsigned int hdrext_offset)
+static void process_125us_based_value(tvbuff_t *tvb, proto_tree *tree, int value_item, unsigned int hdrext_offset)
{
guint32 value;
guint32 value_calc;