diff options
author | wm4 <wm4@nowhere> | 2016-09-17 18:07:40 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2016-09-17 18:07:40 +0200 |
commit | dc48893630d11829121a45137460afb45e24ef2d (patch) | |
tree | e9209740429c15bfa768d3f9c5086cf8ef760df9 /audio | |
parent | d1d5e9dda430b2aa7172308ad7c6639913680af5 (diff) | |
download | mpv-dc48893630d11829121a45137460afb45e24ef2d.tar.bz2 mpv-dc48893630d11829121a45137460afb45e24ef2d.tar.xz |
options: simplify M_OPT_EXIT
There were multiple values under M_OPT_EXIT (M_OPT_EXIT-n for n>=0).
Somehow M_OPT_EXIT-n either meant error code n (with n==0 no error?), or
the number of option valus consumed (0 or 1). The latter is MPlayer
legacy, which left it to the option type parsers to determine whether an
option took a value or not. All of this was changed in mpv, by requiring
the user to use explicit syntax ("--opt=val" instead of "-opt val").
In any case, the n value wasn't even used (anymore), so rip this all
out. Now M_OPT_EXIT-1 doesn't mean anything, and could be used by a new
error code.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/out/ao_openal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/out/ao_openal.c b/audio/out/ao_openal.c index 2c29b8923b..237226e4a5 100644 --- a/audio/out/ao_openal.c +++ b/audio/out/ao_openal.c @@ -96,7 +96,7 @@ static int validate_device_opt(struct mp_log *log, const m_option_t *opt, mp_info(log, " '%s'\n", list); list = list + strlen(list) + 1; } - return M_OPT_EXIT - 1; + return M_OPT_EXIT; } return 0; } |