aboutsummaryrefslogtreecommitdiff
path: root/src/fs/test_fs_uri.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/fs/test_fs_uri.c')
-rw-r--r--src/fs/test_fs_uri.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fs/test_fs_uri.c b/src/fs/test_fs_uri.c
index 72744351b..b7a58ec0f 100644
--- a/src/fs/test_fs_uri.c
+++ b/src/fs/test_fs_uri.c
@@ -94,7 +94,7 @@ testLocation ()
94 cfg = GNUNET_CONFIGURATION_create (); 94 cfg = GNUNET_CONFIGURATION_create ();
95 if (GNUNET_OK != GNUNET_CONFIGURATION_load (cfg, "test_fs_uri_data.conf")) 95 if (GNUNET_OK != GNUNET_CONFIGURATION_load (cfg, "test_fs_uri_data.conf"))
96 { 96 {
97 fprintf (stderr, "Failed to parse configuration file\n"); 97 FPRINTF (stderr, "%s", "Failed to parse configuration file\n");
98 GNUNET_FS_uri_destroy (baseURI); 98 GNUNET_FS_uri_destroy (baseURI);
99 GNUNET_CONFIGURATION_destroy (cfg); 99 GNUNET_CONFIGURATION_destroy (cfg);
100 return 1; 100 return 1;
@@ -316,11 +316,11 @@ main (int argc, char *argv[])
316 failureCount += testLocation (); 316 failureCount += testLocation ();
317 for (i = 0; i < 255; i++) 317 for (i = 0; i < 255; i++)
318 { 318 {
319 /* fprintf (stderr, "."); */ 319 /* FPRINTF (stderr, "%s", "."); */
320 failureCount += testNamespace (i); 320 failureCount += testNamespace (i);
321 failureCount += testFile (i); 321 failureCount += testFile (i);
322 } 322 }
323 /* fprintf (stderr, "\n"); */ 323 /* FPRINTF (stderr, "%s", "\n"); */
324 GNUNET_DISK_directory_remove ("/tmp/gnunet-test-fs-uri"); 324 GNUNET_DISK_directory_remove ("/tmp/gnunet-test-fs-uri");
325 if (failureCount != 0) 325 if (failureCount != 0)
326 return 1; 326 return 1;