summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-12-02 19:33:19 +0100
committerAlessandro Ghedini <alessandro@ghedini.me>2014-12-07 23:50:13 +0100
commitc688880f9e07b21fc0ec72e55bcc5ccabcf4cc63 (patch)
tree8922225b7e842f1eb487b0b9205ffbcd0e9ab9e7
parent47ec404a52ae090f864e3c1669435fae36b4380b (diff)
downloadmpv-c688880f9e07b21fc0ec72e55bcc5ccabcf4cc63.tar.bz2
mpv-c688880f9e07b21fc0ec72e55bcc5ccabcf4cc63.tar.xz
lua: fix broken error message
luaL_error() doesn't support %.*s, because it uses Lua's own format string mechanism that just looks like the C one. Just drop this part.
-rw-r--r--player/lua.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/player/lua.c b/player/lua.c
index d2990c3b28..7f7fb69bce 100644
--- a/player/lua.c
+++ b/player/lua.c
@@ -1043,7 +1043,7 @@ static int script_input_enable_section(lua_State *L)
} else if (bstr_equals0(val, "exclusive")) {
flags |= MP_INPUT_EXCLUSIVE;
} else {
- luaL_error(L, "invalid flag: '%.*s'", BSTR_P(val));
+ luaL_error(L, "invalid flag");
}
}
mp_input_enable_section(mpctx->input, section, flags);