From beb8d75e46567f06b36c0e9cd7b459526ca73571 Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Tue, 11 Jan 2011 09:54:51 +0000 Subject: fixing error message -- 1635 --- src/util/getopt_helpers.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/util/getopt_helpers.c') diff --git a/src/util/getopt_helpers.c b/src/util/getopt_helpers.c index 746dc5267..5c4486b41 100644 --- a/src/util/getopt_helpers.c +++ b/src/util/getopt_helpers.c @@ -176,7 +176,7 @@ GNUNET_GETOPT_set_ulong (struct GNUNET_GETOPT_CommandLineProcessorContext if (1 != SSCANF (value, "%llu", val)) { fprintf (stderr, - _("You must pass a number to the `%s' option.\n"), "-X"); + _("You must pass a number to the `%s' option.\n"), option); return GNUNET_SYSERR; } return GNUNET_OK; @@ -192,7 +192,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"), "-X"); + _("You must pass a number to the `%s' option.\n"), option); return GNUNET_SYSERR; } return GNUNET_OK; -- cgit v1.2.3