aboutsummaryrefslogtreecommitdiffstats
path: root/capture_stop_conditions.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-05-04 09:20:28 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-05-04 09:20:28 +0000
commit24e605cf466f86ec264c74604f1232af70da747c (patch)
tree500f6ac0c60518032d0d2767ded690437b8fcfa1 /capture_stop_conditions.c
parentc76d74fcda04672ac0601b97fa80de30631c5456 (diff)
From Joerg Mayer: mark unused arguments as such.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@5383 f5534014-38df-0310-8fa8-9805f1628bb7
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() */