Skip to content

Commit ccce8f1

Browse files
committed
ff_ffplay.c: fix conversion lose warning
1 parent 70b3858 commit ccce8f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ijkmedia/ijkplayer/ff_ffplay.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2754,7 +2754,7 @@ static int read_thread(void *arg)
27542754
}
27552755
/* offset should be seeked*/
27562756
if (ffp->seek_at_start > 0) {
2757-
ffp_seek_to_l(ffp, ffp->seek_at_start);
2757+
ffp_seek_to_l(ffp, (long)(ffp->seek_at_start));
27582758
}
27592759

27602760
for (;;) {

0 commit comments

Comments
 (0)