Commit 10840a4a authored by Sam Hocevar's avatar Sam Hocevar

* mozilla/vlcpeer.cpp: proper float->int cast.

parent 71b20c32
......@@ -163,7 +163,7 @@ NS_IMETHODIMP VlcPeer::Get_position( PRInt64 *i_position )
{
if( p_plugin->i_vlc )
{
*i_position = VLC_PositionGet( p_plugin->i_vlc );
*i_position = (PRInt64)VLC_PositionGet( p_plugin->i_vlc );
}
return NS_OK;
}
......
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