1
0
mirror of https://github.com/mpv-player/mpv synced 2025-02-18 05:37:04 +00:00

m_option.c: fix typo in message

This commit is contained in:
wm4 2013-08-02 17:06:49 +02:00
parent 4e45fbed24
commit bd0454c31d

View File

@ -2379,7 +2379,7 @@ static int parse_obj_settings_list(const m_option_t *opt, struct bstr name,
int found = obj_settings_find_by_content(list, &res[n]);
if (found < 0) {
mp_msg(MSGT_CFGPARSER, MSGL_WARN,
"Option %.*s: Item bot found\n", BSTR_P(name));
"Option %.*s: Item not found\n", BSTR_P(name));
} else {
obj_settings_list_del_at(&list, found);
}