Changeset 39cc374994d273940fb05d881594cb19a7df769f

Show
Ignore:
Timestamp:
01/02/06 18:44:04 (3 years ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1138815844 +0000
git-parent:

[4733a541022bb566dec486de6939c80339d20f12]

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

Fix warnings

Files:

Legend:

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

    r2cb472d r39cc374  
    275275    if ( i_size > 0 ) 
    276276    { 
    277         while ( i_size && strncasecmp( p_peek, "NSC Format Version=", 
     277        while ( i_size && strncasecmp( (char *)p_peek, "NSC Format Version=", 
    278278                                       (int) sizeof("NSC Format Version=") - 1 ) ) 
    279279        { 
     
    281281            i_size--; 
    282282        } 
    283         if ( !strncasecmp( p_peek, "NSC Format Version=", 
     283        if ( !strncasecmp( (char *)p_peek, "NSC Format Version=", 
    284284                           (int) sizeof("NSC Format Version=") -1 ) ) 
    285285        {