Changeset 2641ceaec6a0d5318c8c7cfa5872a97d51611000

Show
Ignore:
Timestamp:
30/06/08 19:24:16 (3 months ago)
Author:
Olivier Aubert <olivier.aubert@liris.cnrs.fr>
git-committer:
Olivier Aubert <olivier.aubert@liris.cnrs.fr> 1214846656 +0200
git-parent:

[a417ec82d9a793a2681be75be9be719e4972cfce]

git-author:
Olivier Aubert <olivier.aubert@liris.cnrs.fr> 1214846656 +0200
Message:

python bindings: fix compilation

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • bindings/python/vlc_mediaplayer.c

    r241b228 r2641cea  
    3131{ 
    3232    libvlc_exception_t ex; 
    33     vlc_int64_t i_ret; 
     33    int64_t i_ret; 
    3434    LIBVLC_TRY; 
    3535    i_ret = libvlc_media_player_get_length( LIBVLC_MEDIAPLAYER->p_mp, &ex); 
     
    4242{ 
    4343    libvlc_exception_t ex; 
    44     vlc_int64_t i_ret; 
     44    int64_t i_ret; 
    4545    LIBVLC_TRY; 
    4646    i_ret = libvlc_media_player_get_time( LIBVLC_MEDIAPLAYER->p_mp, &ex); 
     
    5353{ 
    5454    libvlc_exception_t ex; 
    55     vlc_int64_t i_time; 
     55    int64_t i_time; 
    5656 
    5757    if( !PyArg_ParseTuple( args, "L", &i_time ) )