diff options
Diffstat (limited to 'src/util/getopt_helpers.c')
-rw-r--r-- | src/util/getopt_helpers.c | 4 |
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, if (1 != SSCANF (value, "%llu", val)) { - fprintf (stderr, _("You must pass a number to the `%s' option.\n"), option); + FPRINTF (stderr, _("You must pass a number to the `%s' option.\n"), option); return GNUNET_SYSERR; } return GNUNET_OK; @@ -280,7 +280,7 @@ GNUNET_GETOPT_set_uint (struct GNUNET_GETOPT_CommandLineProcessorContext *ctx, if (1 != SSCANF (value, "%u", val)) { - fprintf (stderr, _("You must pass a number to the `%s' option.\n"), option); + FPRINTF (stderr, _("You must pass a number to the `%s' option.\n"), option); return GNUNET_SYSERR; } return GNUNET_OK; |