Commit 33144db0 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Kill a warning.

parent d75350e2
...@@ -64,8 +64,8 @@ ...@@ -64,8 +64,8 @@
* Module descriptor * Module descriptor
*****************************************************************************/ *****************************************************************************/
#define DST_TEXT N_("Destination") #define DEST_TEXT N_("Destination")
#define DST_LONGTEXT N_( \ #define DEST_LONGTEXT N_( \
"This is the output URL that will be used." ) "This is the output URL that will be used." )
#define SDP_TEXT N_("SDP") #define SDP_TEXT N_("SDP")
#define SDP_LONGTEXT N_( \ #define SDP_LONGTEXT N_( \
...@@ -151,8 +151,8 @@ vlc_module_begin(); ...@@ -151,8 +151,8 @@ vlc_module_begin();
set_category( CAT_SOUT ); set_category( CAT_SOUT );
set_subcategory( SUBCAT_SOUT_STREAM ); set_subcategory( SUBCAT_SOUT_STREAM );
add_string( SOUT_CFG_PREFIX "dst", "", NULL, DST_TEXT, add_string( SOUT_CFG_PREFIX "dst", "", NULL, DEST_TEXT,
DST_LONGTEXT, VLC_TRUE ); DEST_LONGTEXT, VLC_TRUE );
change_unsafe(); change_unsafe();
add_string( SOUT_CFG_PREFIX "sdp", "", NULL, SDP_TEXT, add_string( SOUT_CFG_PREFIX "sdp", "", NULL, SDP_TEXT,
SDP_LONGTEXT, VLC_TRUE ); SDP_LONGTEXT, VLC_TRUE );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment