Changeset d5a9c50c28669e9a0ff725438ff142bdedd7e6e8

Show
Ignore:
Timestamp:
13/11/06 16:37:26 (2 years ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1163432246 +0000
git-parent:

[a08afde81bad0c5b4982af375d6d93f0ced85c87]

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

Fix warnings

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • src/vlc.c

    rabb377b rd5a9c50  
    6363#   ifdef DEBUG 
    6464    /* Activate malloc checking routines to detect heap corruptions. */ 
    65     putenv( "MALLOC_CHECK_=2" ); 
     65    putenv( (char*)"MALLOC_CHECK_=2" ); 
    6666 
    6767    /* Disable the ugly Gnome crash dialog so that we properly segfault */ 
    68     putenv( "GNOME_DISABLE_CRASH_DIALOG=1" ); 
     68    putenv( (char *)"GNOME_DISABLE_CRASH_DIALOG=1" ); 
    6969#   endif 
    7070 
     
    7272    if( getenv( "VLC_VERBOSE" ) == NULL ) 
    7373    { 
    74         putenv( "VLC_VERBOSE=0" ); 
     74        putenv( (char *)"VLC_VERBOSE=0" ); 
    7575    } 
    7676#endif