summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--COPYING.SOFORT2
-rw-r--r--src/internal/slibtool_mkvars_impl.c2
-rw-r--r--src/stoolie/slbt_stoolie_ctx.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/COPYING.SOFORT b/COPYING.SOFORT
index 75a98e1..1c8a6c1 100644
--- a/COPYING.SOFORT
+++ b/COPYING.SOFORT
@@ -2,7 +2,7 @@
/* */
/* sofort: portable software project skeleton */
/* */
-/* Copyright (C) 2015--2023 SysDeer Technologies, LLC */
+/* Copyright (C) 2015--2024 SysDeer Technologies, LLC */
/* */
/* sofort provides a build system that can be incorporated into Works */
/* which may or may not be covered by a copyleft license. THE FOLLOWING */
diff --git a/src/internal/slibtool_mkvars_impl.c b/src/internal/slibtool_mkvars_impl.c
index 155036a..5245034 100644
--- a/src/internal/slibtool_mkvars_impl.c
+++ b/src/internal/slibtool_mkvars_impl.c
@@ -38,7 +38,7 @@ static int slbt_get_mkvars_var(
/* search for ^var= */
for (pline=tctx->txtlinev; !match && *pline; pline++) {
if (!strncmp(*pline,var,len)) {
- if (isspace((*pline)[len]) || ((*pline)[len] == '=')) {
+ if (isspace((cint = (*pline)[len])) || ((*pline)[len] == '=')) {
mark = &(*pline)[len];
for (; isspace(cint = *mark); )
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); )