[vlc-devel] commit: Fix compiler error. (Jean-Paul Saman )

git version control git at videolan.org
Sat Jun 14 11:05:47 CEST 2008


vlc | branch: master | Jean-Paul Saman <jpsaman at videolan.org> | Tue Jun 10 16:24:38 2008 +0200| [e5eae01a3ef40bc9399c7da03958163571355008]

Fix compiler error.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e5eae01a3ef40bc9399c7da03958163571355008
---

 projects/activex/vlccontrol2.cpp |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/projects/activex/vlccontrol2.cpp b/projects/activex/vlccontrol2.cpp
index c513a70..2a3c62b 100644
--- a/projects/activex/vlccontrol2.cpp
+++ b/projects/activex/vlccontrol2.cpp
@@ -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) )
             {




More information about the vlc-devel mailing list