From a831d35535e278e0534fa4f8848f0113fc8572a2 Mon Sep 17 00:00:00 2001 From: Daniel Golle Date: Tue, 29 Oct 2019 22:38:13 +0100 Subject: treewide: use fprintf As plibc for win32 compatibility has been removed, also replace occurences of FPRINTF compatibility macro with plain fprintf as done in gnunet tree. Signed-off-by: Daniel Golle --- src/psycstore/test_plugin_psycstore.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/psycstore/test_plugin_psycstore.c') diff --git a/src/psycstore/test_plugin_psycstore.c b/src/psycstore/test_plugin_psycstore.c index b074ec1..9af32ef 100644 --- a/src/psycstore/test_plugin_psycstore.c +++ b/src/psycstore/test_plugin_psycstore.c @@ -94,7 +94,7 @@ load_plugin (const struct GNUNET_CONFIGURATION_Handle *cfg) GNUNET_asprintf (&libname, "libgnunet_plugin_psycstore_%s", plugin_name); if (NULL == (ret = GNUNET_PLUGIN_load (libname, (void*) cfg))) { - FPRINTF (stderr, "Failed to load plugin `%s'!\n", plugin_name); + fprintf (stderr, "Failed to load plugin `%s'!\n", plugin_name); return NULL; } GNUNET_free (libname); @@ -189,7 +189,7 @@ run (void *cls, char *const *args, const char *cfgfile, db = load_plugin (cfg); if (NULL == db) { - FPRINTF (stderr, + fprintf (stderr, "%s", "Failed to initialize PSYCstore. " "Database likely not setup, skipping test.\n"); @@ -520,7 +520,7 @@ main (int argc, char *argv[]) if ( (0 != ok) && (77 != ok) ) - FPRINTF (stderr, "Missed some testcases: %d\n", ok); + fprintf (stderr, "Missed some testcases: %d\n", ok); #if ! DEBUG_PSYCSTORE GNUNET_DISK_directory_remove ("/tmp/gnunet-test-plugin-psycstore-sqlite"); -- cgit v1.2.3