Skip to content

Commit

Permalink
Fix syntax error caught with MinGW (not sure how this ever worked!)
Browse files Browse the repository at this point in the history
  • Loading branch information
dbry committed Sep 14, 2024
1 parent 0550340 commit b4a825e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adpcm-xq.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b4a825e

Please sign in to comment.