0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 20:03:10 +02:00

m_config: cosmetics: fix 2 typos

This commit is contained in:
wm4 2018-05-20 12:30:49 +02:00
parent b3968ecf05
commit 3ed173643e

View File

@ -609,7 +609,7 @@ struct m_config_option *m_config_get_co(const struct m_config *config,
{ {
struct m_config_option *co = m_config_get_co_any(config, name); struct m_config_option *co = m_config_get_co_any(config, name);
// CLI aliases should not be real options, and are explicitly handled by // CLI aliases should not be real options, and are explicitly handled by
// m_config_set_option_cli(). So petend it does not exist. // m_config_set_option_cli(). So pretend it does not exist.
if (co && co->opt->type == &m_option_type_cli_alias) if (co && co->opt->type == &m_option_type_cli_alias)
co = NULL; co = NULL;
return co; return co;
@ -1400,7 +1400,7 @@ void m_config_cache_set_dispatch_change_cb(struct m_config_cache *cache,
struct mp_dispatch_queue *dispatch, struct mp_dispatch_queue *dispatch,
void (*cb)(void *ctx), void *cb_ctx) void (*cb)(void *ctx), void *cb_ctx)
{ {
// Remove the old one is tricky. Firts make sure no new notifications will // Removing the old one is tricky. First make sure no new notifications will
// come. // come.
m_config_cache_set_wakeup_cb(cache, NULL, NULL); m_config_cache_set_wakeup_cb(cache, NULL, NULL);
// Remove any pending notifications (assume we're on the same thread as // Remove any pending notifications (assume we're on the same thread as