Commit e5eae01a authored by Jean-Paul Saman's avatar Jean-Paul Saman

Fix compiler error.

parent 23844810
...@@ -542,7 +542,7 @@ STDMETHODIMP VLCInput::put_time(double time) ...@@ -542,7 +542,7 @@ STDMETHODIMP VLCInput::put_time(double time)
p_md = libvlc_playlist_get_media_player(p_libvlc, &ex); p_md = libvlc_playlist_get_media_player(p_libvlc, &ex);
if( ! libvlc_exception_raised(&ex) ) if( ! libvlc_exception_raised(&ex) )
{ {
libvlc_media_player_set_time(p_md, (vlc_int64_t)time, &ex); libvlc_media_player_set_time(p_md, (int64_t)time, &ex);
libvlc_media_player_release(p_md); libvlc_media_player_release(p_md);
if( ! libvlc_exception_raised(&ex) ) if( ! libvlc_exception_raised(&ex) )
{ {
......
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