aboutsummaryrefslogtreecommitdiff
path: root/src/testing/testing_api_cmd_system_destroy.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/testing/testing_api_cmd_system_destroy.c')
-rw-r--r--src/testing/testing_api_cmd_system_destroy.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/testing/testing_api_cmd_system_destroy.c b/src/testing/testing_api_cmd_system_destroy.c
index cdfc65d53..5a2440766 100644
--- a/src/testing/testing_api_cmd_system_destroy.c
+++ b/src/testing/testing_api_cmd_system_destroy.c
@@ -51,13 +51,13 @@ system_destroy_run (void *cls,
51{ 51{
52 struct TestSystemState *tss = cls; 52 struct TestSystemState *tss = cls;
53 const struct GNUNET_TESTING_Command *system_cmd; 53 const struct GNUNET_TESTING_Command *system_cmd;
54 struct GNUNET_TESTING_System *tl_system; 54 const struct GNUNET_TESTING_System *tl_system;
55 55
56 system_cmd = GNUNET_TESTING_interpreter_lookup_command (is, 56 system_cmd = GNUNET_TESTING_interpreter_lookup_command (is,
57 tss->create_label); 57 tss->create_label);
58 GNUNET_TESTING_get_trait_test_system (system_cmd, 58 GNUNET_TESTING_get_trait_test_system (system_cmd,
59 &tl_system); 59 &tl_system);
60 GNUNET_TESTING_system_destroy (tl_system, 60 GNUNET_TESTING_system_destroy ((struct GNUNET_TESTING_System *) tl_system,
61 GNUNET_YES); 61 GNUNET_YES);
62} 62}
63 63