aboutsummaryrefslogtreecommitdiff
path: root/src/util/getopt_helpers.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/getopt_helpers.c')
-rw-r--r--src/util/getopt_helpers.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/getopt_helpers.c b/src/util/getopt_helpers.c
index c74b90877..8fb3673c0 100644
--- a/src/util/getopt_helpers.c
+++ b/src/util/getopt_helpers.c
@@ -252,7 +252,7 @@ GNUNET_GETOPT_set_ulong (struct GNUNET_GETOPT_CommandLineProcessorContext *ctx,
252 252
253 if (1 != SSCANF (value, "%llu", val)) 253 if (1 != SSCANF (value, "%llu", val))
254 { 254 {
255 fprintf (stderr, _("You must pass a number to the `%s' option.\n"), option); 255 FPRINTF (stderr, _("You must pass a number to the `%s' option.\n"), option);
256 return GNUNET_SYSERR; 256 return GNUNET_SYSERR;
257 } 257 }
258 return GNUNET_OK; 258 return GNUNET_OK;
@@ -280,7 +280,7 @@ GNUNET_GETOPT_set_uint (struct GNUNET_GETOPT_CommandLineProcessorContext *ctx,
280 280
281 if (1 != SSCANF (value, "%u", val)) 281 if (1 != SSCANF (value, "%u", val))
282 { 282 {
283 fprintf (stderr, _("You must pass a number to the `%s' option.\n"), option); 283 FPRINTF (stderr, _("You must pass a number to the `%s' option.\n"), option);
284 return GNUNET_SYSERR; 284 return GNUNET_SYSERR;
285 } 285 }
286 return GNUNET_OK; 286 return GNUNET_OK;