From 393dcbf079e50a423d2bc2fce8ef8f74c18df140 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20B=C5=93sch?= Date: Mon, 4 Mar 2013 03:37:36 +0100 Subject: [PATCH] compat/strtod: isspace -> av_isspace. This should fix build after 88d55b8. --- compat/strtod.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) {