summaryrefslogtreecommitdiff
authorClément Bœsch <ubitux@gmail.com>2013-03-04 02:37:36 (GMT)
committer Clément Bœsch <ubitux@gmail.com>2013-03-04 02:37:36 (GMT)
commit393dcbf079e50a423d2bc2fce8ef8f74c18df140 (patch)
tree4969c3212c8ff8e26399fbbd0e418cdece3472e0
parent9ad3cd5b5f848eb3cd033be515d34296f099148b (diff)
downloadffmpeg-393dcbf079e50a423d2bc2fce8ef8f74c18df140.zip
ffmpeg-393dcbf079e50a423d2bc2fce8ef8f74c18df140.tar.gz
ffmpeg-393dcbf079e50a423d2bc2fce8ef8f74c18df140.tar.bz2
compat/strtod: isspace -> av_isspace.
This should fix build after 88d55b8.
Diffstat
-rw-r--r--compat/strtod.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/strtod.c b/compat/strtod.c
index 8568665..3a9452e 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)) {