summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2005-03-11 01:15:35 +0000
committerGuy Harris <guy@alum.mit.edu>2005-03-11 01:15:35 +0000
commitc0f813c0a4ea1238e45e0336553f6d7b47dda61d (patch)
treedf59d6356f98d763d7da9634f76d64521b6370db
parentbce97ef171be4a6bee19d1c6ff1d285b1e9176c1 (diff)
downloadwireshark-c0f813c0a4ea1238e45e0336553f6d7b47dda61d.tar.gz
Flag an unused argument as unused, to squelch compiler warnings, and
don't flag a used argument as unused. svn path=/trunk/; revision=13706
-rw-r--r--gtk/voip_calls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/voip_calls.c b/gtk/voip_calls.c
index f80ffd9718..b816975a07 100644
--- a/gtk/voip_calls.c
+++ b/gtk/voip_calls.c
@@ -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;