[U-Boot] [PATCH] tools/mkenvimage.c: Fix a merge issue
Wolfgang Denk
wd at denx.de
Sat Dec 24 15:57:53 CET 2011
Dear Horst Kronstorfer,
In message <1324723318-32752-1-git-send-email-hkronsto at frequentis.com> you wrote:
> With bfcc40bb09b05c90cc3b1496abb270eb8aa72134 'optopt' was reverted.
>
> Signed-off-by: Horst Kronstorfer <hkronsto at frequentis.com>
> ---
> tools/mkenvimage.c | 4 ++--
> 1 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/tools/mkenvimage.c b/tools/mkenvimage.c
> index c5ed373..8ee2bd0 100644
> --- a/tools/mkenvimage.c
> +++ b/tools/mkenvimage.c
> @@ -122,11 +122,11 @@ int main(int argc, char **argv)
> return EXIT_SUCCESS;
> case ':':
> fprintf(stderr, "Missing argument for option -%c\n",
> - option);
> + optopt);
> usage(argv[0]);
> return EXIT_FAILURE;
> default:
> - fprintf(stderr, "Wrong option -%c\n", option);
> + fprintf(stderr, "Wrong option -%c\n", optopt);
> usage(prg);
> return EXIT_FAILURE;
This change is definitely wrong, as "optopt" is nowhere declared nor
used in tools/mkenvimage.c
Best regards,
Wolfgang Denk
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
The game of life is a game of boomerangs. Our thoughts, deeds and
words return to us sooner or later with astounding accuracy.
More information about the U-Boot
mailing list