Commit 7923b389 authored by stefano's avatar stefano

Fix weird indent.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@16200 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 4b04efbf
...@@ -127,10 +127,10 @@ void parse_options(int argc, char **argv, const OptionDef *options, ...@@ -127,10 +127,10 @@ void parse_options(int argc, char **argv, const OptionDef *options,
opt = argv[optindex++]; opt = argv[optindex++];
if (handleoptions && opt[0] == '-' && opt[1] != '\0') { if (handleoptions && opt[0] == '-' && opt[1] != '\0') {
if (opt[1] == '-' && opt[2] == '\0') { if (opt[1] == '-' && opt[2] == '\0') {
handleoptions = 0; handleoptions = 0;
continue; continue;
} }
po= find_option(options, opt + 1); po= find_option(options, opt + 1);
if (!po->name) if (!po->name)
po= find_option(options, "default"); po= find_option(options, "default");
......
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