Commit 9c11faf6 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

wrc: Fix the spelling of the --endianness option.

parent 77f68e30
...@@ -56,7 +56,7 @@ static const char usage[] = ...@@ -56,7 +56,7 @@ static const char usage[] =
" -D, --define id[=val] Define preprocessor identifier id=val\n" " -D, --define id[=val] Define preprocessor identifier id=val\n"
" --debug=nn Set debug level to 'nn'\n" " --debug=nn Set debug level to 'nn'\n"
" -E Preprocess only\n" " -E Preprocess only\n"
" --endianess=e Set output byte-order e={n[ative], l[ittle], b[ig]}\n" " --endianness=e Set output byte-order e={n[ative], l[ittle], b[ig]}\n"
" (win32 only; default is " ENDIAN "-endian)\n" " (win32 only; default is " ENDIAN "-endian)\n"
" -F TARGET Synonym for -b for compatibility with windres\n" " -F TARGET Synonym for -b for compatibility with windres\n"
" -fo FILE Synonym for -o for compatibility with windres\n" " -fo FILE Synonym for -o for compatibility with windres\n"
...@@ -176,7 +176,7 @@ enum long_options_values ...@@ -176,7 +176,7 @@ enum long_options_values
LONG_OPT_PREPROCESSOR, LONG_OPT_PREPROCESSOR,
LONG_OPT_VERSION, LONG_OPT_VERSION,
LONG_OPT_DEBUG, LONG_OPT_DEBUG,
LONG_OPT_ENDIANESS, LONG_OPT_ENDIANNESS,
LONG_OPT_PEDANTIC, LONG_OPT_PEDANTIC,
LONG_OPT_VERIFY_TRANSL LONG_OPT_VERIFY_TRANSL
}; };
...@@ -186,7 +186,7 @@ static const char short_options[] = ...@@ -186,7 +186,7 @@ static const char short_options[] =
static const struct option long_options[] = { static const struct option long_options[] = {
{ "debug", 1, NULL, LONG_OPT_DEBUG }, { "debug", 1, NULL, LONG_OPT_DEBUG },
{ "define", 1, NULL, 'D' }, { "define", 1, NULL, 'D' },
{ "endianess", 1, NULL, LONG_OPT_ENDIANESS }, { "endianness", 1, NULL, LONG_OPT_ENDIANNESS },
{ "help", 0, NULL, 'h' }, { "help", 0, NULL, 'h' },
{ "include-dir", 1, NULL, 'I' }, { "include-dir", 1, NULL, 'I' },
{ "input", 1, NULL, 'i' }, { "input", 1, NULL, 'i' },
...@@ -396,7 +396,7 @@ int main(int argc,char *argv[]) ...@@ -396,7 +396,7 @@ int main(int argc,char *argv[])
case LONG_OPT_DEBUG: case LONG_OPT_DEBUG:
debuglevel = strtol(optarg, NULL, 0); debuglevel = strtol(optarg, NULL, 0);
break; break;
case LONG_OPT_ENDIANESS: case LONG_OPT_ENDIANNESS:
switch(optarg[0]) switch(optarg[0])
{ {
case 'n': case 'n':
......
...@@ -37,7 +37,7 @@ Set debug level to \fInn\fR. The value is a bitmask consisting of ...@@ -37,7 +37,7 @@ Set debug level to \fInn\fR. The value is a bitmask consisting of
1=verbose, 2=dump internals, 4=resource parser trace, 8=preprocessor 1=verbose, 2=dump internals, 4=resource parser trace, 8=preprocessor
messages, 16=preprocessor scanner and 32=preprocessor parser trace. messages, 16=preprocessor scanner and 32=preprocessor parser trace.
.TP .TP
.I \fB\-\-endianess\fR=\fIe\fR .I \fB\-\-endianness\fR=\fIe\fR
Win32 only; set output byte\-ordering, where \fIe\fR is one of n[ative], Win32 only; set output byte\-ordering, where \fIe\fR is one of n[ative],
l[ittle] or b[ig]. Only resources in source-form can be reordered. Native l[ittle] or b[ig]. Only resources in source-form can be reordered. Native
ordering depends on the system on which \fBwrc\fR was built. You can see ordering depends on the system on which \fBwrc\fR was built. You can see
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment