Commit 393dcbf0 authored by Clément Bœsch's avatar Clément Bœsch

compat/strtod: isspace -> av_isspace.

This should fix build after 88d55b82.
parent 9ad3cd5b
......@@ -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)) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment