aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-epl-profile-parser.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2017-06-12 19:43:30 +0000
committerAnders Broman <a.broman58@gmail.com>2017-06-12 21:40:16 +0000
commit76c7f266223da6975f1986933b403edac7d799ce (patch)
tree7f4414d820f8c247295b4e974c4817dab250d882 /epan/dissectors/packet-epl-profile-parser.c
parent68c0b8311c376fd33d8eabf675ecd3f53138efde (diff)
EPL (profiler parser): fix redundant redeclaration of ‘epl_wmem_iarray_is_empty/sorted’ [-Wredundant-decls]
Change-Id: Ia969ffddc0035b18e7a4afc67d0c830f082938ea Reviewed-on: https://code.wireshark.org/review/22103 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-epl-profile-parser.c')
-rw-r--r--epan/dissectors/packet-epl-profile-parser.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/epan/dissectors/packet-epl-profile-parser.c b/epan/dissectors/packet-epl-profile-parser.c
index ebc05680d6..f45e08f772 100644
--- a/epan/dissectors/packet-epl-profile-parser.c
+++ b/epan/dissectors/packet-epl-profile-parser.c
@@ -143,8 +143,6 @@ struct epl_wmem_iarray {
};
static epl_wmem_iarray_t *epl_wmem_iarray_new(wmem_allocator_t *allocator, const guint elem_size, GEqualFunc cmp) G_GNUC_MALLOC;
-gboolean epl_wmem_iarray_is_empty(epl_wmem_iarray_t *iarr);
-gboolean epl_wmem_iarray_is_sorted(epl_wmem_iarray_t *iarr);
static void epl_wmem_iarray_insert(epl_wmem_iarray_t *iarr, guint32 where, range_admin_t *data);
static void epl_wmem_iarray_sort_and_compact(epl_wmem_iarray_t *iarr);