conversation: fix -Wmissing-prototypes

conversation.c:339:1: warning: no previous prototype for function 'conversation_hash_element_list'
This commit is contained in:
Alexis La Goutte 2022-07-14 16:26:13 +00:00 committed by A Wireshark GitLab Utility
parent b448b6a591
commit b9bc750fd8
1 changed files with 1 additions and 1 deletions

View File

@ -335,7 +335,7 @@ conversation_create_from_template(conversation_t *conversation, const address *a
* (formerly at http://eternallyconfuzzled.com/tuts/algorithms/jsw_tut_hashing.aspx#existing)
* One-at-a-Time hash
*/
guint
static guint
conversation_hash_element_list(gconstpointer v)
{
const conversation_element_t *element = (const conversation_element_t*)v;