From b6ddd3d28c8d643ef053eb47e90f8881042a1f2b Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Mon, 27 Jul 2009 17:32:51 +0000 Subject: [PATCH] compile-it --- src/testing/testing_group.c | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/testing/testing_group.c b/src/testing/testing_group.c index 125c28e46..1a4a7f6e9 100644 --- a/src/testing/testing_group.c +++ b/src/testing/testing_group.c @@ -94,17 +94,16 @@ GNUNET_TESTING_daemons_start (struct GNUNET_SCHEDULER_Handle *sched, void *cb_cls, const char *hostname, ...) - { + struct GNUNET_TESTING_PeerGroup * ret; va_list va; va_start (va, hostname); - GNUNET_TESTING_daemons_start_va (sched, cfg, - total, service_home_prefix, - transports, applications, - cb, cb_cls, cbe, cbe_cls, hostname, - va); + ret = GNUNET_TESTING_daemons_start_va (sched, cfg, + total, cb, cb_cls, hostname, + va); va_end (va); + return ret; } -- 2.25.1