aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-mac-lte.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2020-04-20 10:54:07 +0000
committerAnders Broman <a.broman58@gmail.com>2020-04-21 08:19:25 +0000
commitd10817ce02c837765a050c006904765275d15e8d (patch)
tree6f38afbbe3db9751be7085fde065eb96b53c3b57 /epan/dissectors/packet-mac-lte.c
parent0c3729a688f8dc4098652c0ae4ff85e9ded4a135 (diff)
mac-lte: fix no previous prototype for function
packet-mac-lte.c:4370:7: warning: no previous prototype for function 'get_dual_conn_phr_num_c_bytes' [-Wmissing-prototypes] Change-Id: Ifb585026610b4b2f100f60e4b20278d986775d3a Reviewed-on: https://code.wireshark.org/review/36896 Reviewed-by: Martin Mathieson <martin.r.mathieson@googlemail.com>
Diffstat (limited to 'epan/dissectors/packet-mac-lte.c')
-rw-r--r--epan/dissectors/packet-mac-lte.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-mac-lte.c b/epan/dissectors/packet-mac-lte.c
index daa05ec2a3..2a4d77b37a 100644
--- a/epan/dissectors/packet-mac-lte.c
+++ b/epan/dissectors/packet-mac-lte.c
@@ -4367,10 +4367,10 @@ static void lookup_rlc_channel_from_lcid(guint16 ueid,
/* Work out whether there are 1 or 4 bytes of C bits in Dual-Conn PHR CE */
-guint get_dual_conn_phr_num_c_bytes(tvbuff_t *tvb, guint offset,
- gboolean isSimultPUCCHPUSCHPCell,
- gboolean isSimultPUCCHPUSCHPSCell,
- guint subheader_length)
+static guint get_dual_conn_phr_num_c_bytes(tvbuff_t *tvb, guint offset,
+ gboolean isSimultPUCCHPUSCHPCell,
+ gboolean isSimultPUCCHPUSCHPSCell,
+ guint subheader_length)
{
if (subheader_length < 4) {
/* Can't be 4 */