Changeset f05d28d61b7a1dae079cbb47c6b3cc66d95b587b

Show
Ignore:
Timestamp:
05/10/08 20:01:11 (2 months ago)
Author:
Jean-Paul Saman <jpsaman@videolan.org>
git-committer:
Jean-Paul Saman <jpsaman@videolan.org> 1210442471 +0200
git-parent:

[b3cb03feaa065b38f2b05219dc38fb78bd3d68cf]

git-author:
Jean-Paul Saman <jpsaman@videolan.org> 1210442444 +0200
Message:

Fix compiler warnings.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/access/rtmp/access.c

    r27d483e rf05d28d  
    308308    uint8_t *tmp_buffer; 
    309309    ssize_t i_ret; 
    310     int i_len_tmp; 
     310    size_t i_len_tmp; 
    311311 
    312312    i_len_tmp = 0; 
     
    369369        } 
    370370    } 
    371     if( i_len_tmp > 0 ) { 
     371    if( i_len_tmp > 0 ) 
     372    { 
    372373        if( p_sys->p_thread->result_publish ) 
    373374        { 
     
    425426static int Seek( access_t *p_access, int64_t i_pos ) 
    426427{ 
     428    VLC_UNUSED( p_access ); 
     429    VLC_UNUSED( i_pos ); 
    427430/*msg_Warn ( p_access, "Seek to %lld", i_pos); 
    428431    switch( rtmp_seek( p_access, i_pos ) )