Fix argument type for isspace

This commit is contained in:
hexkyz
2019-07-01 20:29:43 +01:00
parent 382a0192f9
commit 09ab3efddd
4 changed files with 15 additions and 15 deletions

View File

@@ -141,7 +141,7 @@ static Result ParseValue(const char *name, const char *key, const char *val_tup)
return ResultSettingsItemValueInvalidFormat;
}
while (isspace(*type) && type != delimiter) {
while (isspace((unsigned char)*type) && type != delimiter) {
type++;
}