aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-mac-lte.c
diff options
context:
space:
mode:
authorMartin Mathieson <martin.mathieson@keysight.com>2021-01-20 10:56:18 +0000
committerMartin Mathieson <martin.mathieson@keysight.com>2021-01-20 10:56:18 +0000
commit3019bc4efc91d8c88cda594cfc62499d4eb51dfb (patch)
tree37e57a4e4a6bff1a6584266456f2d774d567d6ea /epan/dissectors/packet-mac-lte.c
parentacf713313e01c9c3d03849fe85bc24663176cd14 (diff)
MAC-LTE: Make main disection function static
Diffstat (limited to 'epan/dissectors/packet-mac-lte.c')
-rw-r--r--epan/dissectors/packet-mac-lte.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-mac-lte.c b/epan/dissectors/packet-mac-lte.c
index 5d1a54b0d7..fb4f621e55 100644
--- a/epan/dissectors/packet-mac-lte.c
+++ b/epan/dissectors/packet-mac-lte.c
@@ -2428,7 +2428,7 @@ get_mac_lte_ue_simult_pucch_pusch(mac_lte_info *p_mac_lte_info)
}
/* Forward declarations */
-int dissect_mac_lte(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void*);
+static int dissect_mac_lte(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void*);
static guint8 get_mac_lte_channel_priority(guint16 ueid _U_, guint8 lcid,
guint8 direction);
@@ -7101,7 +7101,7 @@ static void dissect_slsch(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
multiple MAC PDUs logged in the same frame (e.g. in the LTE eNB LI API definition from
the Small Cell Forum)
*/
-int dissect_mac_lte(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data)
+static int dissect_mac_lte(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data)
{
proto_tree *mac_lte_tree;
proto_item *pdu_ti;