Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
flac
Commits
a5c1ed0e
Commit
a5c1ed0e
authored
Aug 12, 2002
by
Josh Coalson
Browse files
minor formatting
parent
b90a60d7
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/flac/main.c
View file @
a5c1ed0e
...
...
@@ -164,7 +164,7 @@ static struct FLAC__share__option long_options_[] = {
{
"--no-residual-gnuplot"
,
0
,
0
,
0
},
{
"--no-residual-text"
,
0
,
0
,
0
},
{
0
,
0
,
0
,
0
}
{
0
,
0
,
0
,
0
}
};
...
...
@@ -454,26 +454,26 @@ void init_options()
int
parse_options
(
int
argc
,
char
*
argv
[])
{
int
short_option
;
int
option_index
=
1
;
int
short_option
;
int
option_index
=
1
;
FLAC__bool
had_error
=
false
;
/*@@@ E and R: are deprecated */
const
char
*
short_opts
=
"0123456789ab:cdeFHl:mMo:pP:q:r:sS:tV"
;
while
((
short_option
=
FLAC__share__getopt_long
(
argc
,
argv
,
short_opts
,
long_options_
,
&
option_index
))
!=
-
1
)
{
switch
(
short_option
)
{
case
0
:
/* long option with no equivalent short option */
while
((
short_option
=
FLAC__share__getopt_long
(
argc
,
argv
,
short_opts
,
long_options_
,
&
option_index
))
!=
-
1
)
{
switch
(
short_option
)
{
case
0
:
/* long option with no equivalent short option */
had_error
|=
(
parse_option
(
short_option
,
long_options_
[
option_index
].
name
,
FLAC__share__optarg
)
!=
0
);
break
;
break
;
case
'?'
:
case
':'
:
had_error
=
true
;
break
;
default:
/* short option */
had_error
=
true
;
break
;
default:
/* short option */
had_error
|=
(
parse_option
(
short_option
,
0
,
FLAC__share__optarg
)
!=
0
);
break
;
}
}
break
;
}
}
if
(
had_error
)
{
return
1
;
...
...
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