1
0
mirror of https://github.com/mpv-player/mpv synced 2025-01-19 13:51:14 +00:00

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.
This commit is contained in:
wm4 2014-12-02 19:33:19 +01:00 committed by Alessandro Ghedini
parent 47ec404a52
commit c688880f9e

View File

@ -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);