aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheJackiMonster <thejackimonster@gmail.com>2021-07-22 20:13:48 +0200
committerTheJackiMonster <thejackimonster@gmail.com>2021-07-22 20:13:48 +0200
commit11ef36d6d2cb036d48dad6d1ae4240030f846972 (patch)
treec0cec034fd17150ee46543e39ab74580fcca175d
parent6b2c5a92fbc3a57c42fc9fb38c4705ecb7afb328 (diff)
downloadgnunet-11ef36d6d2cb036d48dad6d1ae4240030f846972.tar.gz
gnunet-11ef36d6d2cb036d48dad6d1ae4240030f846972.zip
-fix compile error
Signed-off-by: TheJackiMonster <thejackimonster@gmail.com>
-rw-r--r--src/testbed/gnunet-cmd.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/testbed/gnunet-cmd.c b/src/testbed/gnunet-cmd.c
index 7889750ba..9f833a0cb 100644
--- a/src/testbed/gnunet-cmd.c
+++ b/src/testbed/gnunet-cmd.c
@@ -90,7 +90,8 @@ run (void *cls)
90 strcat (node_ip, NODE_BASE_IP); 90 strcat (node_ip, NODE_BASE_IP);
91 strcat (node_ip, plugin->n); 91 strcat (node_ip, plugin->n);
92 92
93 plugin->api->start_testcase (NULL, router_ip, node_ip); 93 // parameters 'n' and 'm' are filled in as NULL to compile
94 plugin->api->start_testcase (NULL, router_ip, node_ip, NULL, NULL);
94 95
95} 96}
96 97