Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
9c11faf6
Commit
9c11faf6
authored
Aug 24, 2011
by
Francois Gouget
Committed by
Alexandre Julliard
Aug 24, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wrc: Fix the spelling of the --endianness option.
parent
77f68e30
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
wrc.c
tools/wrc/wrc.c
+4
-4
wrc.man.in
tools/wrc/wrc.man.in
+1
-1
No files found.
tools/wrc/wrc.c
View file @
9c11faf6
...
...
@@ -56,7 +56,7 @@ static const char usage[] =
" -D, --define id[=val] Define preprocessor identifier id=val
\n
"
" --debug=nn Set debug level to 'nn'
\n
"
" -E Preprocess only
\n
"
" --endian
ess=e
Set output byte-order e={n[ative], l[ittle], b[ig]}
\n
"
" --endian
ness=e
Set output byte-order e={n[ative], l[ittle], b[ig]}
\n
"
" (win32 only; default is "
ENDIAN
"-endian)
\n
"
" -F TARGET Synonym for -b for compatibility with windres
\n
"
" -fo FILE Synonym for -o for compatibility with windres
\n
"
...
...
@@ -176,7 +176,7 @@ enum long_options_values
LONG_OPT_PREPROCESSOR
,
LONG_OPT_VERSION
,
LONG_OPT_DEBUG
,
LONG_OPT_ENDIANESS
,
LONG_OPT_ENDIAN
N
ESS
,
LONG_OPT_PEDANTIC
,
LONG_OPT_VERIFY_TRANSL
};
...
...
@@ -186,7 +186,7 @@ static const char short_options[] =
static
const
struct
option
long_options
[]
=
{
{
"debug"
,
1
,
NULL
,
LONG_OPT_DEBUG
},
{
"define"
,
1
,
NULL
,
'D'
},
{
"endian
ess"
,
1
,
NULL
,
LONG_OPT_ENDIA
NESS
},
{
"endian
ness"
,
1
,
NULL
,
LONG_OPT_ENDIAN
NESS
},
{
"help"
,
0
,
NULL
,
'h'
},
{
"include-dir"
,
1
,
NULL
,
'I'
},
{
"input"
,
1
,
NULL
,
'i'
},
...
...
@@ -396,7 +396,7 @@ int main(int argc,char *argv[])
case
LONG_OPT_DEBUG
:
debuglevel
=
strtol
(
optarg
,
NULL
,
0
);
break
;
case
LONG_OPT_ENDIANESS
:
case
LONG_OPT_ENDIAN
N
ESS
:
switch
(
optarg
[
0
])
{
case
'n'
:
...
...
tools/wrc/wrc.man.in
View file @
9c11faf6
...
...
@@ -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
messages, 16=preprocessor scanner and 32=preprocessor parser trace.
.TP
.I \fB\-\-endianess\fR=\fIe\fR
.I \fB\-\-endian
n
ess\fR=\fIe\fR
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
ordering depends on the system on which \fBwrc\fR was built. You can see
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment