From 46f1ce1e2f72bf418bbb4c00f3e4ef4fbac82356 Mon Sep 17 00:00:00 2001 From: wm4 Date: Mon, 4 Jul 2016 10:50:00 +0200 Subject: input: remove redundant log message --- input/input.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'input') diff --git a/input/input.c b/input/input.c index b6ed77debf..dd9486f12a 100644 --- a/input/input.c +++ b/input/input.c @@ -1247,12 +1247,9 @@ void mp_input_load(struct input_ctx *ictx) void *tmp = talloc_new(NULL); char **files = mp_find_all_config_files(tmp, ictx->global, "input.conf"); for (int n = 0; files && files[n]; n++) - config_ok = config_ok | parse_config_file(ictx, files[n], false); + parse_config_file(ictx, files[n], false); talloc_free(tmp); } - if (!config_ok) { - MP_VERBOSE(ictx, "Falling back on default (hardcoded) input config\n"); - } if (input_conf->use_alt_gr) { ictx->using_alt_gr = true; -- cgit v1.2.3