Flag an unused argument as unused, to squelch compiler warnings, and

don't flag a used argument as unused.

svn path=/trunk/; revision=13706
This commit is contained in:
Guy Harris 2005-03-11 01:15:35 +00:00
parent bce97ef171
commit c0f813c0a4
1 changed files with 1 additions and 1 deletions

View File

@ -273,7 +273,7 @@ void unprotect_thread_critical_region(void);
/****************************************************************************/
/* whenever a rtp event packet is seen by the tap listener */
static int
rtp_event_packet(void *ptr _U_, packet_info *pinfo, epan_dissect_t *edt _U_, const void *rtp_event_info _U_)
rtp_event_packet(void *ptr _U_, packet_info *pinfo _U_, epan_dissect_t *edt _U_, const void *rtp_event_info)
{
const struct _rtp_event_info *pi = rtp_event_info;
voip_rtp_tapinfo_t *tapinfo = &the_tapinfo_rtp_struct;