1
0
mirror of https://github.com/mpv-player/mpv synced 2025-03-21 10:51:51 +00:00

input: make parse_config_file return bool

This return value is only used to set bool config_ok in
mp_input_load_config so it makes more sense to return bool.
This commit is contained in:
Guido Cella 2024-01-11 11:58:40 +01:00 committed by Dudemanguy
parent 484ab32a41
commit 68e3412fee

View File

@ -1276,9 +1276,9 @@ static int parse_config(struct input_ctx *ictx, bool builtin, bstr data,
return n_binds;
}
static int parse_config_file(struct input_ctx *ictx, char *file)
static bool parse_config_file(struct input_ctx *ictx, char *file)
{
int r = 0;
bool r = false;
void *tmp = talloc_new(NULL);
stream_t *s = NULL;
@ -1295,7 +1295,7 @@ static int parse_config_file(struct input_ctx *ictx, char *file)
MP_VERBOSE(ictx, "Parsing input config file %s\n", file);
int num = parse_config(ictx, false, data, file, NULL);
MP_VERBOSE(ictx, "Input config file %s parsed: %d binds\n", file, num);
r = 1;
r = true;
} else {
MP_ERR(ictx, "Error reading input config file %s\n", file);
}