aboutsummaryrefslogtreecommitdiff
path: root/src/statistics
diff options
context:
space:
mode:
authorLRN <lrn1986@gmail.com>2012-11-17 08:57:03 +0000
committerLRN <lrn1986@gmail.com>2012-11-17 08:57:03 +0000
commitb304cd75b7d0e9afdc5cba6aae184bb0fb2ec5bd (patch)
treee63b2dac4e439dd6656a8c719ba933131a3d6033 /src/statistics
parent0300a752270d1b1be5a8f81e6a1d8d2e56c09bb4 (diff)
downloadgnunet-b304cd75b7d0e9afdc5cba6aae184bb0fb2ec5bd.tar.gz
gnunet-b304cd75b7d0e9afdc5cba6aae184bb0fb2ec5bd.zip
Use full, 3-argument fprintf invocation
Diffstat (limited to 'src/statistics')
-rw-r--r--src/statistics/gnunet-statistics.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/statistics/gnunet-statistics.c b/src/statistics/gnunet-statistics.c
index 0cd55342e..2747f7adc 100644
--- a/src/statistics/gnunet-statistics.c
+++ b/src/statistics/gnunet-statistics.c
@@ -207,13 +207,13 @@ resolver_test_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
207 { 207 {
208 if (subsystem == NULL) 208 if (subsystem == NULL)
209 { 209 {
210 FPRINTF (stderr, _("Missing argument: subsystem \n")); 210 FPRINTF (stderr, "%s", _("Missing argument: subsystem \n"));
211 ret = 1; 211 ret = 1;
212 return; 212 return;
213 } 213 }
214 if (name == NULL) 214 if (name == NULL)
215 { 215 {
216 FPRINTF (stderr, _("Missing argument: name\n")); 216 FPRINTF (stderr, "%s", _("Missing argument: name\n"));
217 ret = 1; 217 ret = 1;
218 return; 218 return;
219 } 219 }