From 0145483b9b9e4b24a4efa14b5cd5cdfdea078066 Mon Sep 17 00:00:00 2001 From: LRN Date: Thu, 8 Nov 2012 16:50:17 +0000 Subject: [PATCH] Use full, 3-argument invocation of FRPINTF (again) --- src/transport/gnunet-transport.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/transport/gnunet-transport.c b/src/transport/gnunet-transport.c index d83e9638f..0297b4624 100644 --- a/src/transport/gnunet-transport.c +++ b/src/transport/gnunet-transport.c @@ -748,7 +748,7 @@ testservice_task (void *cls, ¬ify_disconnect); if (NULL == handle) { - FPRINTF (stderr, _("Failed to connect to transport service\n")); + FPRINTF (stderr, "%s", _("Failed to connect to transport service\n")); ret = 1; return; } @@ -772,7 +772,7 @@ testservice_task (void *cls, ¬ify_disconnect); if (NULL == handle) { - FPRINTF (stderr, _("Failed to connect to transport service\n")); + FPRINTF (stderr, "%s", _("Failed to connect to transport service\n")); ret = 1; return; } @@ -788,12 +788,12 @@ testservice_task (void *cls, NULL, NULL); if (NULL == handle) { - FPRINTF (stderr, _("Failed to connect to transport service\n")); + FPRINTF (stderr, "%s", _("Failed to connect to transport service\n")); ret = 1; return; } if (verbosity > 0) - FPRINTF (stdout, _("Starting to receive benchmark data\n")); + FPRINTF (stdout, "%s", _("Starting to receive benchmark data\n")); start_time = GNUNET_TIME_absolute_get (); } @@ -823,7 +823,7 @@ testservice_task (void *cls, &monitor_notify_disconnect); if (NULL == handle) { - FPRINTF (stderr, _("Failed to connect to transport service\n")); + FPRINTF (stderr, "%s", _("Failed to connect to transport service\n")); ret = 1; return; } -- 2.25.1