summaryrefslogtreecommitdiff
path: root/source4/lib/util/tests/genrand.c
diff options
context:
space:
mode:
Diffstat (limited to 'source4/lib/util/tests/genrand.c')
-rw-r--r--source4/lib/util/tests/genrand.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/util/tests/genrand.c b/source4/lib/util/tests/genrand.c
index 205a66352f..5fe229c089 100644
--- a/source4/lib/util/tests/genrand.c
+++ b/source4/lib/util/tests/genrand.c
@@ -22,14 +22,14 @@
#include "includes.h"
#include "torture/torture.h"
-static void dummy_reseed(int *d)
+static void dummy_reseed(void *userdata, int *d)
{
*d = 42;
}
static bool test_reseed_callback(struct torture_context *tctx)
{
- set_rand_reseed_callback(dummy_reseed);
+ set_rand_reseed_callback(dummy_reseed, NULL);
return true;
}