Skip to content

Commit

Permalink
ff_ffplay.c: fix conversion lose warning
Browse files Browse the repository at this point in the history
  • Loading branch information
xinzhengzhang committed Feb 28, 2017
1 parent 70b3858 commit ccce8f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ijkmedia/ijkplayer/ff_ffplay.c
Original file line number Diff line number Diff line change
Expand Up @@ -2754,7 +2754,7 @@ static int read_thread(void *arg)
}
/* offset should be seeked*/
if (ffp->seek_at_start > 0) {
ffp_seek_to_l(ffp, ffp->seek_at_start);
ffp_seek_to_l(ffp, (long)(ffp->seek_at_start));
}

for (;;) {
Expand Down

0 comments on commit ccce8f1

Please sign in to comment.