aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2020-07-06 13:47:58 +0000
committerAnders Broman <a.broman58@gmail.com>2020-07-06 15:24:11 +0000
commit0d7d7fe3c6295cd40e3c96407f7208ef19b43b61 (patch)
tree5f2fb2c4b3a6cefaac0e17f662aac877201e5541
parent53b0b25661d2495d1cc2feba0fe27d05308f9e13 (diff)
rtps-utils: fix no previous prototype for functio
packet-rtps-utils.c:85:6: warning: no previous prototype for ‘dissect_mutable_member’ [-Wmissing-prototypes] Change-Id: Id87118f36e50db8bf4a27ca021bbceae220034d4 Reviewed-on: https://code.wireshark.org/review/37742 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
-rw-r--r--epan/dissectors/packet-rtps-utils.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/epan/dissectors/packet-rtps-utils.c b/epan/dissectors/packet-rtps-utils.c
index c785a2686f..6c1ea7e9b7 100644
--- a/epan/dissectors/packet-rtps-utils.c
+++ b/epan/dissectors/packet-rtps-utils.c
@@ -82,6 +82,7 @@ gint dissect_user_defined(proto_tree *tree, tvbuff_t * tvb, gint offset, guint e
RTICdrTypeObjectExtensibility extensibility, gint offset_zero,
guint16 flags, guint32 element_member_id);
+static
gint dissect_mutable_member(proto_tree *tree , tvbuff_t * tvb, gint offset, guint encoding,
dissection_info * info, gboolean * is_end) {
@@ -432,4 +433,4 @@ gint dissect_user_defined(proto_tree *tree, tvbuff_t * tvb, gint offset, guint e
*
* ex: set shiftwidth=4 tabstop=8 expandtab:
* :indentSize=4:tabSize=8:noTabs=true:
- */ \ No newline at end of file
+ */