Yet another cast fix.

svn path=/trunk/; revision=51864
This commit is contained in:
Stig Bjørlykke 2013-09-09 06:41:03 +00:00
parent 4b4aaf35ff
commit a78abca4dd
1 changed files with 1 additions and 1 deletions

View File

@ -898,7 +898,7 @@ static gboolean
dissector_delete_all_check (gpointer key _U_, gpointer value, gpointer user_data)
{
dtbl_entry_t *dtbl_entry = (dtbl_entry_t *) value;
dissector_handle_t handle = (dissector_handle_t *) user_data;
dissector_handle_t handle = (dissector_handle_t) user_data;
return (proto_get_id (dtbl_entry->current->protocol) == proto_get_id (handle->protocol));
}