summaryrefslogtreecommitdiff
path: root/tests/heavy-wq.c
diff options
context:
space:
mode:
authorpaul <paul>2005-09-05 14:00:09 +0000
committerpaul <paul>2005-09-05 14:00:09 +0000
commit6379b96117a50803236fe698e4e27d9849f3a3bc (patch)
tree2b01eef69470adb3ea4b10c309b553bf44357403 /tests/heavy-wq.c
parenteb820afe3b53321624317cfa6b426ecae1392f24 (diff)
2004-09-05 Paul Jakma <paul@dishone.st>
* heavy-wq.c: (slow_func_del,slow_func_err) make them take void * argument to shut up silly gcc warning.
Diffstat (limited to 'tests/heavy-wq.c')
-rw-r--r--tests/heavy-wq.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/tests/heavy-wq.c b/tests/heavy-wq.c
index 093fbd41..0e12c601 100644
--- a/tests/heavy-wq.c
+++ b/tests/heavy-wq.c
@@ -1,5 +1,5 @@
/*
- * $Id: heavy-wq.c,v 1.1 2005/04/25 16:42:24 paul Exp $
+ * $Id: heavy-wq.c,v 1.2 2005/09/05 14:00:09 paul Exp $
*
* This file is part of Quagga.
*
@@ -87,8 +87,9 @@ slow_func_err (struct work_queue *wq, struct work_queue_item *item)
}
static void
-slow_func_del (struct heavy_wq_node *hn)
+slow_func_del (void *data)
{
+ struct heavy_wq_node *hn = data;
assert (hn && hn->str);
XFREE (MTYPE_PREFIX_LIST_STR, hn->str);
hn->str = NULL;
@@ -96,8 +97,9 @@ slow_func_del (struct heavy_wq_node *hn)
}
static wq_item_status
-slow_func (struct heavy_wq_node *hn)
+slow_func (void *data)
{
+ struct heavy_wq_node *hn = data;
double x = 1;
int j;