CIP: fix no previous prototype for ‘add_cip_pccc_function_to_info_column’ [-Wmissing-prototypes]

Change-Id: Id5737f6bc054ce4c51b28097b0db341f7debfe2e
Reviewed-on: https://code.wireshark.org/review/27028
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Alexis La Goutte 2018-04-19 13:29:53 +02:00 committed by Anders Broman
parent 9da25bc16f
commit af0f34a6bb
1 changed files with 1 additions and 1 deletions

View File

@ -2965,7 +2965,7 @@ void add_cip_service_to_info_column(packet_info *pinfo, guint8 service, const va
col_set_fence(pinfo->cinfo, COL_INFO);
}
void add_cip_pccc_function_to_info_column(packet_info *pinfo, guint8 fnc, const value_string* fnc_vals)
static void add_cip_pccc_function_to_info_column(packet_info *pinfo, guint8 fnc, const value_string* fnc_vals)
{
col_append_fstr( pinfo->cinfo, COL_INFO,
" - %s", val_to_str(fnc, fnc_vals, "Function (0x%02x)"));