summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2016-07-04 10:50:00 +0200
committerwm4 <wm4@nowhere>2016-07-04 10:50:00 +0200
commit46f1ce1e2f72bf418bbb4c00f3e4ef4fbac82356 (patch)
tree297f091790b19a02fce78774b80d6e7774e97757
parentbe230d16e57d948a990d16f06d4da11cfea97701 (diff)
downloadmpv-46f1ce1e2f72bf418bbb4c00f3e4ef4fbac82356.tar.bz2
mpv-46f1ce1e2f72bf418bbb4c00f3e4ef4fbac82356.tar.xz
input: remove redundant log message
-rw-r--r--input/input.c5
1 files changed, 1 insertions, 4 deletions
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;