aboutsummaryrefslogtreecommitdiff
path: root/src/testbed/test_testbed_api.c
diff options
context:
space:
mode:
authorSree Harsha Totakura <totakura@in.tum.de>2012-10-14 12:21:48 +0000
committerSree Harsha Totakura <totakura@in.tum.de>2012-10-14 12:21:48 +0000
commit75357bec5d503045dcf5d5cfd5805300e0605d9d (patch)
tree95508483a8285f39068282002ca85cc114446818 /src/testbed/test_testbed_api.c
parent27fcf1fd9a5800ff97eaf8d9863ba48614b378d0 (diff)
downloadgnunet-75357bec5d503045dcf5d5cfd5805300e0605d9d.tar.gz
gnunet-75357bec5d503045dcf5d5cfd5805300e0605d9d.zip
operation closure in peer start
Diffstat (limited to 'src/testbed/test_testbed_api.c')
-rw-r--r--src/testbed/test_testbed_api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testbed/test_testbed_api.c b/src/testbed/test_testbed_api.c
index 0fb745a1c..694d06274 100644
--- a/src/testbed/test_testbed_api.c
+++ b/src/testbed/test_testbed_api.c
@@ -355,7 +355,7 @@ peer_create_cb (void *cls, struct GNUNET_TESTBED_Peer *peer, const char *emsg)
355 GNUNET_assert (NULL != peer_ptr); 355 GNUNET_assert (NULL != peer_ptr);
356 *peer_ptr = peer; 356 *peer_ptr = peer;
357 GNUNET_TESTBED_operation_done (operation); 357 GNUNET_TESTBED_operation_done (operation);
358 operation = GNUNET_TESTBED_peer_start (peer, NULL, NULL); 358 operation = GNUNET_TESTBED_peer_start (NULL, peer, NULL, NULL);
359 GNUNET_assert (NULL != operation); 359 GNUNET_assert (NULL != operation);
360} 360}
361 361