Skip to content
Snippets Groups Projects
Commit 393dcbf0 authored by Clément Bœsch's avatar Clément Bœsch
Browse files

compat/strtod: isspace -> av_isspace.

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