Fix a pointer type.

Change-Id: I5cc67fa320b3241d6793575d59e49160ef40b260
Reviewed-on: https://code.wireshark.org/review/5319
Reviewed-by: Gerald Combs <gerald@wireshark.org>
This commit is contained in:
Gerald Combs 2014-11-14 19:30:42 -08:00
parent 3275ba2653
commit 3428361a26
1 changed files with 4 additions and 4 deletions

View File

@ -112,7 +112,7 @@ enum
static gboolean have_voip_calls_tap_listeners = FALSE;
static void
voip_calls_remove_tap_listener(void* tap_id_base)
voip_calls_remove_tap_listener(voip_calls_tapinfo_t* tap_id_base)
{
/* Remove the calls tap listener */
remove_tap_listener_actrace_calls(tap_id_base);
@ -137,7 +137,7 @@ voip_calls_remove_tap_listener(void* tap_id_base)
if (find_tap_id("voip")) {
remove_tap_listener_voip_calls(tap_id_base);
}
have_voip_calls_tap_listeners = FALSE;
}
@ -854,7 +854,7 @@ static void
voip_calls_init_tap(const char *dummy _U_, void* userdata _U_)
{
voip_calls_tapinfo_t* tap_id_base = voip_calls_get_info();
if (graph_analysis_data == NULL) {
graph_analysis_data_init();
/* init the Graph Analysys */
@ -892,7 +892,7 @@ voip_calls_init_tap(const char *dummy _U_, void* userdata _U_)
have_voip_calls_tap_listeners = TRUE;
}
/* create dialog box if necessary */
if (voip_calls_dlg == NULL) {
voip_calls_dlg_create();