at least compiling fix
authorNils Gillmann <ng0@n0.is>
Mon, 7 May 2018 08:40:50 +0000 (08:40 +0000)
committerNils Gillmann <ng0@n0.is>
Mon, 7 May 2018 08:40:50 +0000 (08:40 +0000)
Signed-off-by: Nils Gillmann <ng0@n0.is>
src/transport/test_plugin_transport.c

index 93e833aa849d5f6d05ec36fc11c22eb39a6887ed..acb3911f05afd5baa0cac10bd615ab53a807f36d 100644 (file)
@@ -747,7 +747,7 @@ main (int argc, char * const *argv)
       GNUNET_GETOPT_OPTION_END };
   int ret;
 
-  GNUNET_DISK_directory_remove GNUNET_DISK_mktemp("test-gnunetd-plugin-transport");
+  GNUNET_DISK_directory_remove (GNUNET_DISK_mktemp("test-gnunetd-plugin-transport"));
 
   char * const argv_prog[] = { "test_plugin_transport", "-c",
       "test_plugin_transport_data.conf", NULL };
@@ -757,7 +757,7 @@ main (int argc, char * const *argv)
       (GNUNET_OK
           == GNUNET_PROGRAM_run (3, argv_prog, "test-plugin-transport",
               "testcase", options, &run, (void *) argv)) ? ok : 1;
-  GNUNET_DISK_directory_remove GNUNET_DISK_mktemp("test-gnunetd-plugin-transport");
+  GNUNET_DISK_directory_remove (GNUNET_DISK_mktemp("test-gnunetd-plugin-transport"));
   return ret;
 }