aboutsummaryrefslogtreecommitdiff
path: root/src/testing/test_testing.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/testing/test_testing.c')
-rw-r--r--src/testing/test_testing.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/testing/test_testing.c b/src/testing/test_testing.c
index 519ccc31f..079ccb6db 100644
--- a/src/testing/test_testing.c
+++ b/src/testing/test_testing.c
@@ -64,7 +64,6 @@ my_cb (void *cls,
64 64
65static void 65static void
66run (void *cls, 66run (void *cls,
67 struct GNUNET_SCHEDULER_Handle *sched,
68 char *const *args, 67 char *const *args,
69 const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg) 68 const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg)
70{ 69{
@@ -74,7 +73,7 @@ run (void *cls,
74#if VERBOSE 73#if VERBOSE
75 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Starting daemon.\n"); 74 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Starting daemon.\n");
76#endif 75#endif
77 d = GNUNET_TESTING_daemon_start (sched, cfg, TIMEOUT, NULL, NULL, 0, NULL, NULL, &my_cb, NULL); 76 d = GNUNET_TESTING_daemon_start (cfg, TIMEOUT, NULL, NULL, 0, NULL, NULL, &my_cb, NULL);
78 GNUNET_assert (d != NULL); 77 GNUNET_assert (d != NULL);
79} 78}
80 79