This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
compat/strtod: isspace -> av_isspace.
This should fix build after
88d55b8
.
tags/n1.2
Clément Bœsch
12 years ago
parent
9ad3cd5b5f
commit
393dcbf079
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
compat/strtod.c
+ 1
- 1
compat/strtod.c
View File
@@ -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)) {
Write
Preview
Loading…
Cancel
Save