aboutsummaryrefslogtreecommitdiff
path: root/src/transport/gnunet-transport.c
diff options
context:
space:
mode:
authorLRN <lrn1986@gmail.com>2012-11-08 16:50:17 +0000
committerLRN <lrn1986@gmail.com>2012-11-08 16:50:17 +0000
commit0145483b9b9e4b24a4efa14b5cd5cdfdea078066 (patch)
tree64a181fe134f6d0ea6153ceea2df89872bd322fa /src/transport/gnunet-transport.c
parent5edb234d215611914d8e9e9953fe4f0a4439c383 (diff)
downloadgnunet-0145483b9b9e4b24a4efa14b5cd5cdfdea078066.tar.gz
gnunet-0145483b9b9e4b24a4efa14b5cd5cdfdea078066.zip
Use full, 3-argument invocation of FRPINTF (again)
Diffstat (limited to 'src/transport/gnunet-transport.c')
-rw-r--r--src/transport/gnunet-transport.c10
1 files 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,
748 &notify_disconnect); 748 &notify_disconnect);
749 if (NULL == handle) 749 if (NULL == handle)
750 { 750 {
751 FPRINTF (stderr, _("Failed to connect to transport service\n")); 751 FPRINTF (stderr, "%s", _("Failed to connect to transport service\n"));
752 ret = 1; 752 ret = 1;
753 return; 753 return;
754 } 754 }
@@ -772,7 +772,7 @@ testservice_task (void *cls,
772 &notify_disconnect); 772 &notify_disconnect);
773 if (NULL == handle) 773 if (NULL == handle)
774 { 774 {
775 FPRINTF (stderr, _("Failed to connect to transport service\n")); 775 FPRINTF (stderr, "%s", _("Failed to connect to transport service\n"));
776 ret = 1; 776 ret = 1;
777 return; 777 return;
778 } 778 }
@@ -788,12 +788,12 @@ testservice_task (void *cls,
788 NULL, NULL); 788 NULL, NULL);
789 if (NULL == handle) 789 if (NULL == handle)
790 { 790 {
791 FPRINTF (stderr, _("Failed to connect to transport service\n")); 791 FPRINTF (stderr, "%s", _("Failed to connect to transport service\n"));
792 ret = 1; 792 ret = 1;
793 return; 793 return;
794 } 794 }
795 if (verbosity > 0) 795 if (verbosity > 0)
796 FPRINTF (stdout, _("Starting to receive benchmark data\n")); 796 FPRINTF (stdout, "%s", _("Starting to receive benchmark data\n"));
797 start_time = GNUNET_TIME_absolute_get (); 797 start_time = GNUNET_TIME_absolute_get ();
798 798
799 } 799 }
@@ -823,7 +823,7 @@ testservice_task (void *cls,
823 &monitor_notify_disconnect); 823 &monitor_notify_disconnect);
824 if (NULL == handle) 824 if (NULL == handle)
825 { 825 {
826 FPRINTF (stderr, _("Failed to connect to transport service\n")); 826 FPRINTF (stderr, "%s", _("Failed to connect to transport service\n"));
827 ret = 1; 827 ret = 1;
828 return; 828 return;
829 } 829 }