summaryrefslogtreecommitdiff
path: root/capture_stop_conditions.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-05-04 09:20:28 +0000
committerGuy Harris <guy@alum.mit.edu>2002-05-04 09:20:28 +0000
commitd1f7799520c44748a136492b7bf44c31431736ea (patch)
tree500f6ac0c60518032d0d2767ded690437b8fcfa1 /capture_stop_conditions.c
parent5879955477f0f474a0ae282d4ec88ff3100b89c2 (diff)
downloadwireshark-d1f7799520c44748a136492b7bf44c31431736ea.tar.gz
From Joerg Mayer: mark unused arguments as such.
svn path=/trunk/; revision=5383
Diffstat (limited to 'capture_stop_conditions.c')
-rw-r--r--capture_stop_conditions.c6
1 files 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 <gerald@ethereal.com>
@@ -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() */