From: Robert Pengelly Date: Sun, 21 Dec 2025 21:45:22 +0000 (+0000) Subject: Add missing cast X-Git-Url: https://git.candlhat.org/?a=commitdiff_plain;h=refs%2Fheads%2Fmaster;p=sasm.git Add missing cast --- 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++; }