summaryrefslogtreecommitdiffstats
path: root/options/m_option.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2017-06-24 11:32:40 +0200
committerwm4 <wm4@nowhere>2017-06-24 11:32:40 +0200
commit933db1b95f6c476230fa86ee06e1fec5cd36e697 (patch)
treefba2a1e1b2e1ce43862d4cd14ed1e5a151300cee /options/m_option.c
parentf8cc184134a910a83a05cb9fb2ad596f150bebe5 (diff)
downloadmpv-933db1b95f6c476230fa86ee06e1fec5cd36e697.tar.bz2
mpv-933db1b95f6c476230fa86ee06e1fec5cd36e697.tar.xz
Revert "parse_commandline: fail gracefully on bad args"
This reverts commit 38b05daf7d16898f4a63e4ccf48479d8964e6e19. There was actually no LGPL relicensing agreement with wd0.
Diffstat (limited to 'options/m_option.c')
-rw-r--r--options/m_option.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/options/m_option.c b/options/m_option.c
index c141850e75..2899ad01d5 100644
--- a/options/m_option.c
+++ b/options/m_option.c
@@ -62,7 +62,7 @@ char *m_option_strerror(int code)
case M_OPT_MISSING_PARAM:
return "option requires parameter";
case M_OPT_INVALID:
- return "option could not be parsed";
+ return "option parameter could not be parsed";
case M_OPT_OUT_OF_RANGE:
return "parameter is outside values allowed for option";
case M_OPT_DISALLOW_PARAM: