summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-08-02 17:06:49 +0200
committerwm4 <wm4@nowhere>2013-08-02 17:06:49 +0200
commitbd0454c31dd7f7c7d05668841d2f689f60fa1f6b (patch)
tree33455d9fa6105567af508ca047e433921fd9879e
parent4e45fbed24083b09c63df43c3999910ab3b70164 (diff)
downloadmpv-bd0454c31dd7f7c7d05668841d2f689f60fa1f6b.tar.bz2
mpv-bd0454c31dd7f7c7d05668841d2f689f60fa1f6b.tar.xz
m_option.c: fix typo in message
-rw-r--r--core/m_option.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/m_option.c b/core/m_option.c
index 343768a23d..41916befeb 100644
--- a/core/m_option.c
+++ b/core/m_option.c
@@ -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);
}