Changeset 384c053ced1826ca1a8800b46c944108f25d29e8

Show
Ignore:
Timestamp:
12/03/08 02:29:30 (9 months ago)
Author:
Jean-Baptiste Kempf <jb@videolan.org>
git-committer:
Jean-Baptiste Kempf <jb@videolan.org> 1205285370 -0700
git-parent:

[fe79260ae8261e9ec68084820b53d97567b07791]

git-author:
Jean-Baptiste Kempf <jb@videolan.org> 1205284950 -0700
Message:

Kill a warning in mingww32

Files:

Legend:

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

    re6ab052 r384c053  
    4444#define MUX_LONGTEXT N_( \ 
    4545    "Muxer to use for the stream." ) 
    46 #define DST_TEXT N_("Output destination") 
    47 #define DST_LONGTEXT N_( \ 
     46#define DEST_TEXT N_("Output destination") 
     47#define DEST_LONGTEXT N_( \ 
    4848    "Destination (URL) to use for the stream." ) 
    4949#define NAME_TEXT N_("Session name") 
     
    9797    add_string( SOUT_CFG_PREFIX "mux", "", NULL, MUX_TEXT, 
    9898                MUX_LONGTEXT, VLC_FALSE ); 
    99     add_string( SOUT_CFG_PREFIX "dst", "", NULL, DST_TEXT, 
    100                 DST_LONGTEXT, VLC_FALSE ); 
     99    add_string( SOUT_CFG_PREFIX "dst", "", NULL, DEST_TEXT, 
     100                DEST_LONGTEXT, VLC_FALSE ); 
    101101        change_unsafe(); 
    102102