From ba6d5fcb97b9831dddf7dfe09fb02fbb23d864b4 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Thu, 28 Oct 2004 13:40:50 +0000 Subject: r3324: made the smbtorture code completely warning free (This used to be commit 7067bb9b52223cafa28470f264f0b60646a07a01) --- source4/torture/nbench/nbench.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/torture/nbench') diff --git a/source4/torture/nbench/nbench.c b/source4/torture/nbench/nbench.c index a649b5fa15..0b4bf4bbf1 100644 --- a/source4/torture/nbench/nbench.c +++ b/source4/torture/nbench/nbench.c @@ -162,7 +162,7 @@ done: /* run a test that simulates an approximate netbench client load */ -BOOL torture_nbench(int dummy) +BOOL torture_nbench(void) { BOOL correct = True; extern int torture_nprocs; @@ -193,7 +193,7 @@ BOOL torture_nbench(int dummy) printf("Running for %d seconds with load '%s' and warmup %d secs\n", timelimit, loadfile, warmup); - signal(SIGALRM, SIGNAL_CAST nb_alarm); + signal(SIGALRM, nb_alarm); alarm(1); torture_create_procs(run_netbench, &correct); alarm(0); -- cgit