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
avcodec/xbmdec: fix pointer type warnings
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.3
Michael Niedermayer
11 years ago
parent
56cc178485
commit
bb605ef8ab
1 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-2
libavcodec/xbmdec.c
+ 2
- 2
libavcodec/xbmdec.c
View File
@@ -50,9 +50,9 @@ static int parse_str_int(const uint8_t *p, int len, const uint8_t *key)
return INT_MIN;
for(; p<end; p++) {
char *
*
eptr;
char *eptr;
int64_t ret = strtol(p, &eptr, 10);
if (eptr != p)
if (
(const uint8_t *)
eptr != p)
return ret;
}
return INT_MIN;
Write
Preview
Loading…
Cancel
Save