aboutsummaryrefslogtreecommitdiff
path: root/src/namestore/test_plugin_namestore.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/namestore/test_plugin_namestore.c')
-rw-r--r--src/namestore/test_plugin_namestore.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/namestore/test_plugin_namestore.c b/src/namestore/test_plugin_namestore.c
index 0cb99dcb9..b4ed4c70d 100644
--- a/src/namestore/test_plugin_namestore.c
+++ b/src/namestore/test_plugin_namestore.c
@@ -73,7 +73,7 @@ load_plugin (const struct GNUNET_CONFIGURATION_Handle *cfg)
73 GNUNET_asprintf (&libname, "libgnunet_plugin_namestore_%s", plugin_name); 73 GNUNET_asprintf (&libname, "libgnunet_plugin_namestore_%s", plugin_name);
74 if (NULL == (ret = GNUNET_PLUGIN_load (libname, (void *) cfg))) 74 if (NULL == (ret = GNUNET_PLUGIN_load (libname, (void *) cfg)))
75 { 75 {
76 FPRINTF (stderr, "Failed to load plugin `%s'!\n", plugin_name); 76 fprintf (stderr, "Failed to load plugin `%s'!\n", plugin_name);
77 GNUNET_free (libname); 77 GNUNET_free (libname);
78 return NULL; 78 return NULL;
79 } 79 }
@@ -159,7 +159,7 @@ run (void *cls,
159 nsp = load_plugin (cfg); 159 nsp = load_plugin (cfg);
160 if (NULL == nsp) 160 if (NULL == nsp)
161 { 161 {
162 FPRINTF ( 162 fprintf (
163 stderr, 163 stderr,
164 "%s", 164 "%s",
165 "Failed to initialize namestore. Database likely not setup, skipping test.\n"); 165 "Failed to initialize namestore. Database likely not setup, skipping test.\n");
@@ -195,7 +195,7 @@ main (int argc, char *argv[])
195 NULL); 195 NULL);
196 GNUNET_DISK_purge_cfg_dir (cfg_name, "GNUNET_TMP"); 196 GNUNET_DISK_purge_cfg_dir (cfg_name, "GNUNET_TMP");
197 if (ok != 0) 197 if (ok != 0)
198 FPRINTF (stderr, "Missed some testcases: %d\n", ok); 198 fprintf (stderr, "Missed some testcases: %d\n", ok);
199 return ok; 199 return ok;
200} 200}
201 201