提交 393dcbf0 编写于 作者: C Clément Bœsch

compat/strtod: isspace -> av_isspace.

This should fix build after 88d55b82.
上级 9ad3cd5b
......@@ -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)) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册