More casting for ctype
parent
7898b8297e
commit
cb83dab4ad
|
@ -108,11 +108,11 @@ pkgconf_dependency_parse_str(pkgconf_list_t *deplist_head, const char *depends)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case INSIDE_MODULE_NAME:
|
case INSIDE_MODULE_NAME:
|
||||||
if (isspace(*ptr))
|
if (isspace((unsigned int)*ptr))
|
||||||
{
|
{
|
||||||
const char *sptr = ptr;
|
const char *sptr = ptr;
|
||||||
|
|
||||||
while (*sptr && isspace(*sptr))
|
while (*sptr && isspace((unsigned int)*sptr))
|
||||||
sptr++;
|
sptr++;
|
||||||
|
|
||||||
if (*sptr == '\0')
|
if (*sptr == '\0')
|
||||||
|
@ -176,7 +176,7 @@ pkgconf_dependency_parse_str(pkgconf_list_t *deplist_head, const char *depends)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case AFTER_OPERATOR:
|
case AFTER_OPERATOR:
|
||||||
if (!isspace(*ptr))
|
if (!isspace((unsigned int)*ptr))
|
||||||
{
|
{
|
||||||
vstart = ptr;
|
vstart = ptr;
|
||||||
state = INSIDE_VERSION;
|
state = INSIDE_VERSION;
|
||||||
|
|
Loading…
Reference in New Issue