From b4a825e8ed4e0aed0984759235b5e425b32b9f9a Mon Sep 17 00:00:00 2001 From: David Bryant Date: Fri, 13 Sep 2024 21:18:42 -0700 Subject: [PATCH] Fix syntax error caught with MinGW (not sure how this ever worked!) --- adpcm-xq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adpcm-xq.c b/adpcm-xq.c index 91d57cb..4e100c9 100644 --- a/adpcm-xq.c +++ b/adpcm-xq.c @@ -218,7 +218,7 @@ static double strtod_hexfree (const char *nptr, char **endptr) const char *sptr = nptr; // skip past any leading whitespace and possibly a sign - while isspace (*sptr) sptr++; + while (isspace (*sptr)) sptr++; if (*sptr == '+' || *sptr == '-') sptr++; // if hex detected ("0x" or "0X"), return 0.0 and end at the X