From: Sree Harsha Totakura Date: Fri, 12 Oct 2012 10:17:48 +0000 (+0000) Subject: fix w32 build X-Git-Tag: initial-import-from-subversion-38251~11428 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=9980d7ed997ac3942fe4980b15300966f6dc7b18;p=oweals%2Fgnunet.git fix w32 build --- diff --git a/src/testbed/gnunet-testbed-profiler.c b/src/testbed/gnunet-testbed-profiler.c index 256b9efa0..56b06a501 100644 --- a/src/testbed/gnunet-testbed-profiler.c +++ b/src/testbed/gnunet-testbed-profiler.c @@ -171,7 +171,7 @@ run (void *cls, char *const *args, const char *cfgfile, if (NULL == args[0]) { - FPRINTF (stderr, _("No hosts-file specified on command line\n")); + fprintf (stderr, _("No hosts-file specified on command line\n")); return; } if (0 == num_peers) @@ -182,14 +182,14 @@ run (void *cls, char *const *args, const char *cfgfile, num_hosts = GNUNET_TESTBED_hosts_load_from_file (args[0], &hosts); if (0 == num_hosts) { - FPRINTF (stderr, _("No hosts loaded\n")); + fprintf (stderr, _("No hosts loaded\n")); return; } for (nhost = 0; nhost < num_hosts; nhost++) { if (GNUNET_YES != GNUNET_TESTBED_is_host_habitable (hosts[nhost])) { - FPRINTF (stderr, _("Host %s cannot start testbed\n"), + fprintf (stderr, _("Host %s cannot start testbed\n"), GNUNET_TESTBED_host_get_hostname_ (hosts[nhost])); break; }