From d1f7799520c44748a136492b7bf44c31431736ea Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Sat, 4 May 2002 09:20:28 +0000 Subject: From Joerg Mayer: mark unused arguments as such. svn path=/trunk/; revision=5383 --- capture_stop_conditions.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/capture_stop_conditions.c b/capture_stop_conditions.c index 718db37d52..18e68b02e5 100644 --- a/capture_stop_conditions.c +++ b/capture_stop_conditions.c @@ -1,7 +1,7 @@ /* capture_stop_conditions.c * Implementation for 'stop condition handler'. * - * $Id: capture_stop_conditions.c,v 1.2 2001/12/04 08:25:55 guy Exp $ + * $Id: capture_stop_conditions.c,v 1.3 2002/05/04 09:20:28 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs @@ -114,7 +114,7 @@ static void _cnd_destr_timeout(condition* cnd){ * returns: TRUE - Condition is true. * FALSE - Condition is false. */ -static gboolean _cnd_eval_timeout(condition* cnd, va_list ap){ +static gboolean _cnd_eval_timeout(condition* cnd, va_list ap _U_){ cnd_timeout_dat* data = (cnd_timeout_dat*)cnd_get_user_data(cnd); gint32 elapsed_time; /* check timeout here */ @@ -204,5 +204,5 @@ static gboolean _cnd_eval_capturesize(condition* cnd, va_list ap){ * * parameter: cnd - Pointer to an initialized condition. */ -static void _cnd_reset_capturesize(condition *cnd){ +static void _cnd_reset_capturesize(condition *cnd _U_){ } /* END _cnd_reset_capturesize() */ -- cgit v1.2.1