enip: fix no previous prototype for function

packet-enip.c:1102:19: warning: no previous prototype for ‘create_connection_id_list’ [-Wmissing-prototypes]

Change-Id: I6e0caa29f5617a5688cddaa4d8001a260228294e
Reviewed-on: https://code.wireshark.org/review/37740
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 13:34:06 +00:00 committed by Anders Broman
parent 9c5b15a8f4
commit fc3a9d3328
1 changed files with 1 additions and 1 deletions

View File

@ -1099,7 +1099,7 @@ enip_conn_hash (gconstpointer v)
}
// Create a list of connection IDs and attach it to the conversation.
enip_conv_info_t* create_connection_id_list(conversation_t* conversation)
static enip_conv_info_t* create_connection_id_list(conversation_t* conversation)
{
enip_conv_info_t* enip_info = wmem_new(wmem_file_scope(), enip_conv_info_t);
enip_info->O2TConnIDs = wmem_tree_new(wmem_file_scope());