From dead12a0220111f24ed6bc64afd373386c9aa543 Mon Sep 17 00:00:00 2001 From: Robert Pengelly Date: Sun, 21 Dec 2025 21:45:22 +0000 Subject: [PATCH] Add missing cast --- expr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/expr.c b/expr.c index bcd1190..6ccaa82 100644 --- a/expr.c +++ b/expr.c @@ -349,7 +349,7 @@ static struct section *operand (char *start, char **pp, struct expr *expr, int e temp = (*pp); - while (*temp && isxdigit (*temp)) { + while (*temp && isxdigit ((int) *temp)) { temp++; } -- 2.34.1