]> git.sesse.net Git - vlc/commitdiff
Fix compiler error.
authorJean-Paul Saman <jpsaman@videolan.org>
Tue, 10 Jun 2008 14:24:38 +0000 (16:24 +0200)
committerJean-Paul Saman <jpsaman@videolan.org>
Sat, 14 Jun 2008 08:09:06 +0000 (10:09 +0200)
projects/activex/vlccontrol2.cpp

index c513a706bda4d61387445f1684209bc77d8408f3..2a3c62b7183a9bfbac643e609cff930a2ab2face 100644 (file)
@@ -542,7 +542,7 @@ STDMETHODIMP VLCInput::put_time(double time)
         p_md = libvlc_playlist_get_media_player(p_libvlc, &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);
             if( ! libvlc_exception_raised(&ex) )
             {