rtps: fix no previous prototype for function

packet-rtps.c:4486:10: warning: no previous prototype for ‘union_compare’ [-Wmissing-prototypes]
packet-rtps.c:4492:7: warning: no previous prototype for ‘union_hash’ [-Wmissing-prototypes]

Change-Id: If5b95248fe69e5cef41693be863beef9e2fc428d
Reviewed-on: https://code.wireshark.org/review/37946
Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Alexis La Goutte 2020-07-06 14:50:28 +00:00 committed by Anders Broman
parent fc0581e032
commit 08af00d759
1 changed files with 0 additions and 10 deletions

View File

@ -4533,16 +4533,6 @@ static gboolean compare_by_guid(gconstpointer a, gconstpointer b) {
return memcmp(guid_a, guid_b, sizeof(endpoint_guid)) == 0;
}
gboolean union_compare(gconstpointer v1, gconstpointer v2) {
const union_member_mapping * a = (const union_member_mapping *) v1;
const union_member_mapping * b = (const union_member_mapping *) v2;
return ((a->union_type_id == b->union_type_id) && (a->discriminator == b->discriminator));
}
guint union_hash (gconstpointer v) {
return (guint) *(const guint64*) v;
}
static guint coherent_set_key_hash_by_key(gconstpointer key) {
GBytes * coherent_set_object_key_bytes = NULL;
coherent_set_object_key_bytes = g_bytes_new(key, sizeof(coherent_set_key));