From 4d128503d51fe0ef710ac8a64e704b7d8148883c Mon Sep 17 00:00:00 2001 From: Sree Harsha Totakura Date: Mon, 5 Nov 2012 19:11:40 +0000 Subject: [PATCH] coverity fix --- src/testbed/testbed_api_testbed.c | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/testbed/testbed_api_testbed.c b/src/testbed/testbed_api_testbed.c index 9ec47891e..f7f2a9c29 100644 --- a/src/testbed/testbed_api_testbed.c +++ b/src/testbed/testbed_api_testbed.c @@ -427,19 +427,19 @@ call_cc: { if (GNUNET_TESTBED_TOPOLOGY_ERDOS_RENYI == rc->topology) rc->topology_operation = - GNUNET_TESTBED_overlay_configure_topology (dll_op, - rc->num_peers, - rc->peers, - rc->topology, - rc->num_oc, - GNUNET_TESTBED_TOPOLOGY_OPTION_END); + GNUNET_TESTBED_overlay_configure_topology (NULL, + rc->num_peers, + rc->peers, + rc->topology, + rc->num_oc, + GNUNET_TESTBED_TOPOLOGY_OPTION_END); else - rc->topology_operation = - GNUNET_TESTBED_overlay_configure_topology (dll_op, - rc->num_peers, - rc->peers, - rc->topology, - GNUNET_TESTBED_TOPOLOGY_OPTION_END); + rc->topology_operation = + GNUNET_TESTBED_overlay_configure_topology (NULL, + rc->num_peers, + rc->peers, + rc->topology, + GNUNET_TESTBED_TOPOLOGY_OPTION_END); if (NULL == rc->topology_operation) LOG (GNUNET_ERROR_TYPE_WARNING, "Not generating topology. Check number of peers\n"); -- 2.25.1