diff options
author | midipix <writeonce@midipix.org> | 2024-05-06 15:09:45 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2024-05-06 15:09:45 +0000 |
commit | 529133ae6e3250d3e5a8d0f6c75b67a1849bd8b4 (patch) | |
tree | 9c324542feb8cf9965115b9e8f03cf89bd0439fa /src | |
parent | b8a88d467b245742ba1731196feff0fbede84bc5 (diff) | |
download | slibtool-529133ae6e3250d3e5a8d0f6c75b67a1849bd8b4.tar.bz2 slibtool-529133ae6e3250d3e5a8d0f6c75b67a1849bd8b4.tar.xz |
slbt_st_get_stoolie_ctx(): explicitly promote char to in when calling isspace().
Diffstat (limited to 'src')
-rw-r--r-- | src/stoolie/slbt_stoolie_ctx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stoolie/slbt_stoolie_ctx.c b/src/stoolie/slbt_stoolie_ctx.c index b74edd3..3457fbe 100644 --- a/src/stoolie/slbt_stoolie_ctx.c +++ b/src/stoolie/slbt_stoolie_ctx.c @@ -208,7 +208,7 @@ int slbt_st_get_stoolie_ctx( if (!ctx->m4buf && ctx->makam) { for (pline=ctx->makam->txtlinev; !ctx->m4argv && *pline; pline++) { if (!strncmp(*pline,"ACLOCAL_AMFLAGS",15)) { - if (isspace((*pline)[15]) || ((*pline)[15] == '=')) { + if (isspace((cint = (*pline)[15])) || ((*pline)[15] == '=')) { mark = &(*pline)[15]; for (; isspace(cint = *mark); ) |