Changeset f1a3e870f73b1238164894b9f47ede0069b02830

Show
Ignore:
Timestamp:
01/03/08 18:25:57 (9 months ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1204392357 +0000
git-parent:

[0cb5cfbd2e62924c1e3175d7f296378eba4dbdca]

git-author:
Rémi Denis-Courmont <rem@videolan.org> 1204392357 +0000
Message:

Fix a few warnings

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/demux/mp4/libmp4.c

    rd06be22 rf1a3e87  
    137137            where XXXXXXXX is the fourcc */ 
    138138    /* FIXME implement this */ 
     139    (void)p_uuid; 
     140    (void)i_fourcc; 
    139141} 
    140142 
     
    320322{ 
    321323    /* Up to now do nothing */ 
     324    (void)p_box; 
    322325} 
    323326 
     
    28002803    } 
    28012804 
    2802     vasprintf( &psz_path, psz_fmt, args ); 
     2805    if( vasprintf( &psz_path, psz_fmt, args ) == -1 ) 
     2806        psz_path = NULL; 
    28032807 
    28042808    if( !psz_path || !psz_path[0] )