Changeset 6be4bda5b2ba0c1bad35328a195daf43d4c57cb4

Show
Ignore:
Timestamp:
10/02/07 09:53:47 (2 years ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1171097627 +0000
git-parent:

[08cb8e62e928457d00602f9b96cb8c4755a74305]

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

Fix compiler warning

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/stream_out/standard.c

    r0336f13 r6be4bda  
    132132    sout_mux_t          *p_mux; 
    133133 
    134     char                *psz_mux_byext = NULL; 
     134    const char          *psz_mux_byext = NULL; 
    135135 
    136136    config_ChainParse( p_stream, SOUT_CFG_PREFIX, ppsz_sout_options, 
     
    179179            { NULL,  NULL } 
    180180        }; 
    181         char *psz_ext = strrchr( psz_url, '.' ) + 1; 
     181        const char *psz_ext = strrchr( psz_url, '.' ) + 1; 
    182182        int  i; 
    183183