Commit d5504948 authored by Christophe Massiot's avatar Christophe Massiot

* modules/access/fake.c: Fixed an implicit cast which apparently was

   causing problem with some compiler versions.
parent 075cf0a0
...@@ -174,7 +174,7 @@ static int Demux( demux_t *p_demux ) ...@@ -174,7 +174,7 @@ static int Demux( demux_t *p_demux )
} }
else else
{ {
p_sys->i_last_pts += I64C(1000000) / p_sys->f_fps; p_sys->i_last_pts += (mtime_t)(1000000.0 / p_sys->f_fps);
mwait( p_sys->i_last_pts ); mwait( p_sys->i_last_pts );
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment