Browse Source

compat/strtod: isspace -> av_isspace.

This should fix build after 88d55b8.
Clément Bœsch 12 years ago
parent
commit
393dcbf079
1 changed files with 1 additions and 1 deletions
  1. 1 1
      compat/strtod.c

+ 1 - 1
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)) {