diff options
Diffstat (limited to 'compat')
-rw-r--r-- | compat/strtod.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/strtod.c b/compat/strtod.c index 8568665..3a9452e 100644 --- a/compat/strtod.c +++ b/compat/strtod.c @@ -48,7 +48,7 @@ double avpriv_strtod(const char *nptr, char **endptr) double res; /* Skip leading spaces */ - while (isspace(*nptr)) + while (av_isspace(*nptr)) nptr++; if (!av_strncasecmp(nptr, "infinity", 8)) { |