From: Christian Grothoff Date: Mon, 27 Jul 2009 17:32:51 +0000 (+0000) Subject: compile-it X-Git-Tag: initial-import-from-subversion-38251~23611 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=b6ddd3d28c8d643ef053eb47e90f8881042a1f2b;p=oweals%2Fgnunet.git compile-it --- 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; }