diff options
Diffstat (limited to 'src/config_file.c')
-rw-r--r-- | src/config_file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config_file.c b/src/config_file.c index 64d57c5c5..a85ae1578 100644 --- a/src/config_file.c +++ b/src/config_file.c @@ -134,7 +134,7 @@ static int cvar_match_section(const char *section, const char *query) qsub = query + section_len; qdot = strchr(qsub, '.'); /* Make sure the subsections are the same length */ - if (strlen(sdot + 1) != qdot - qsub) + if (strlen(sdot + 1) != (size_t) (qdot - qsub)) return 0; /* The subsection is case-sensitive */ |