forked from lda/telodendria
Fix warning on some compilers.
This commit is contained in:
parent
19b0dcac5a
commit
3b28af2031
1 changed files with 1 additions and 1 deletions
|
@ -208,7 +208,7 @@ StrBlank(const char *str)
|
||||||
|
|
||||||
while (str[i])
|
while (str[i])
|
||||||
{
|
{
|
||||||
blank &= isspace(str[i]);
|
blank &= isspace((unsigned char) str[i]);
|
||||||
/* No need to continue if we don't have a blank */
|
/* No need to continue if we don't have a blank */
|
||||||
if (!blank)
|
if (!blank)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue