Fix 'declaration hides parameter'

This commit is contained in:
twinaphex 2019-07-14 13:21:14 +02:00
parent bcc72aca7c
commit 594dd84e6e

View File

@ -339,8 +339,8 @@ static bool parse_line(config_file_t *conf,
comment++; comment++;
if (strstr(comment, "include ") == comment) if (strstr(comment, "include ") == comment)
{ {
char *line = comment + STRLEN_CONST("include "); char *include_line = comment + STRLEN_CONST("include ");
char *path = extract_value(line, false); char *path = extract_value(include_line, false);
if (!path) if (!path)
return false; return false;