[FFmpeg-cvslog] compat/strtod: isspace -> av_isspace.

Clément Bœsch git at videolan.org
Mon Mar 4 03:39:01 CET 2013


ffmpeg | branch: master | Clément Bœsch <ubitux at gmail.com> | Mon Mar  4 03:37:36 2013 +0100| [393dcbf079e50a423d2bc2fce8ef8f74c18df140] | committer: Clément Bœsch

compat/strtod: isspace -> av_isspace.

This should fix build after 88d55b8.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=393dcbf079e50a423d2bc2fce8ef8f74c18df140
---

 compat/strtod.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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



More information about the ffmpeg-cvslog mailing list