aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNils Gillmann <ng0@n0.is>2018-05-07 08:40:50 +0000
committerNils Gillmann <ng0@n0.is>2018-05-07 08:40:50 +0000
commit64002c2f7191f1b7bd0428cc5267a9e913dcbdc1 (patch)
treed123eea9ae1c42630e90916a9d57cce8ca67c99e /src
parent5652b4e8b0b2641c51f8ee8f93c530c7814866a4 (diff)
downloadgnunet-64002c2f7191f1b7bd0428cc5267a9e913dcbdc1.tar.gz
gnunet-64002c2f7191f1b7bd0428cc5267a9e913dcbdc1.zip
at least compiling fix
Signed-off-by: Nils Gillmann <ng0@n0.is>
Diffstat (limited to 'src')
-rw-r--r--src/transport/test_plugin_transport.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/transport/test_plugin_transport.c b/src/transport/test_plugin_transport.c
index 93e833aa8..acb3911f0 100644
--- a/src/transport/test_plugin_transport.c
+++ b/src/transport/test_plugin_transport.c
@@ -747,7 +747,7 @@ main (int argc, char * const *argv)
747 GNUNET_GETOPT_OPTION_END }; 747 GNUNET_GETOPT_OPTION_END };
748 int ret; 748 int ret;
749 749
750 GNUNET_DISK_directory_remove GNUNET_DISK_mktemp("test-gnunetd-plugin-transport"); 750 GNUNET_DISK_directory_remove (GNUNET_DISK_mktemp("test-gnunetd-plugin-transport"));
751 751
752 char * const argv_prog[] = { "test_plugin_transport", "-c", 752 char * const argv_prog[] = { "test_plugin_transport", "-c",
753 "test_plugin_transport_data.conf", NULL }; 753 "test_plugin_transport_data.conf", NULL };
@@ -757,7 +757,7 @@ main (int argc, char * const *argv)
757 (GNUNET_OK 757 (GNUNET_OK
758 == GNUNET_PROGRAM_run (3, argv_prog, "test-plugin-transport", 758 == GNUNET_PROGRAM_run (3, argv_prog, "test-plugin-transport",
759 "testcase", options, &run, (void *) argv)) ? ok : 1; 759 "testcase", options, &run, (void *) argv)) ? ok : 1;
760 GNUNET_DISK_directory_remove GNUNET_DISK_mktemp("test-gnunetd-plugin-transport"); 760 GNUNET_DISK_directory_remove (GNUNET_DISK_mktemp("test-gnunetd-plugin-transport"));
761 return ret; 761 return ret;
762} 762}
763 763