projects
/
platform
/
kernel
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6f403ba
)
tools/mkenvimage.c: Fix a merge issue
author
Horst Kronstorfer
<hkronsto@frequentis.com>
Sat, 24 Dec 2011 00:41:58 +0000
(
00:41
+0000)
committer
Wolfgang Denk
<wd@denx.de>
Thu, 5 Jan 2012 15:36:44 +0000
(16:36 +0100)
With
bfcc40bb09b05c90cc3b1496abb270eb8aa72134
'optopt' was reverted.
Signed-off-by: Horst Kronstorfer <hkronsto@frequentis.com>
tools/mkenvimage.c
patch
|
blob
|
history
diff --git
a/tools/mkenvimage.c
b/tools/mkenvimage.c
index
c5ed373
..
8ee2bd0
100644
(file)
--- 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",
- opt
ion
);
+ opt
opt
);
usage(argv[0]);
return EXIT_FAILURE;
default:
- fprintf(stderr, "Wrong option -%c\n", opt
ion
);
+ fprintf(stderr, "Wrong option -%c\n", opt
opt
);
usage(prg);
return EXIT_FAILURE;
}