summaryrefslogtreecommitdiff
path: root/compat/strtod.c
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2013-03-04 03:37:36 +0100
committerClément Bœsch <ubitux@gmail.com>2013-03-04 03:37:36 +0100
commit393dcbf079e50a423d2bc2fce8ef8f74c18df140 (patch)
tree4969c3212c8ff8e26399fbbd0e418cdece3472e0 /compat/strtod.c
parent9ad3cd5b5f848eb3cd033be515d34296f099148b (diff)
downloadffmpeg-393dcbf079e50a423d2bc2fce8ef8f74c18df140.tar.gz
compat/strtod: isspace -> av_isspace.
This should fix build after 88d55b8.
Diffstat (limited to 'compat/strtod.c')
-rw-r--r--compat/strtod.c2
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)) {