mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
compat/strtod: isspace -> av_isspace.
This should fix build after 88d55b8
.
This commit is contained in:
parent
9ad3cd5b5f
commit
393dcbf079
@ -48,7 +48,7 @@ double avpriv_strtod(const char *nptr, char **endptr)
|
|||||||
double res;
|
double res;
|
||||||
|
|
||||||
/* Skip leading spaces */
|
/* Skip leading spaces */
|
||||||
while (isspace(*nptr))
|
while (av_isspace(*nptr))
|
||||||
nptr++;
|
nptr++;
|
||||||
|
|
||||||
if (!av_strncasecmp(nptr, "infinity", 8)) {
|
if (!av_strncasecmp(nptr, "infinity", 8)) {
|
||||||
|
Loading…
Reference in New Issue
Block a user