diff options
author | Clément Bœsch | 2013-03-04 03:37:36 +0100 |
---|---|---|
committer | Clément Bœsch | 2013-03-04 03:37:36 +0100 |
commit | 393dcbf079e50a423d2bc2fce8ef8f74c18df140 (patch) | |
tree | 4969c3212c8ff8e26399fbbd0e418cdece3472e0 | |
parent | 9ad3cd5b5f848eb3cd033be515d34296f099148b (diff) |
compat/strtod: isspace -> av_isspace.
This should fix build after 88d55b8.
-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 856866564c..3a9452eac2 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)) { |