[vlc-devel] commit: Kill a warning in mingww32 (Jean-Baptiste Kempf )

git version control git at videolan.org
Wed Mar 12 02:29:25 CET 2008


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Tue Mar 11 18:22:30 2008 -0700| [384c053ced1826ca1a8800b46c944108f25d29e8]

Kill a warning in mingww32

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=384c053ced1826ca1a8800b46c944108f25d29e8
---

 modules/stream_out/standard.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/modules/stream_out/standard.c b/modules/stream_out/standard.c
index d1d445d..bfa13a5 100644
--- a/modules/stream_out/standard.c
+++ b/modules/stream_out/standard.c
@@ -43,8 +43,8 @@
 #define MUX_TEXT N_("Output muxer")
 #define MUX_LONGTEXT N_( \
     "Muxer to use for the stream." )
-#define DST_TEXT N_("Output destination")
-#define DST_LONGTEXT N_( \
+#define DEST_TEXT N_("Output destination")
+#define DEST_LONGTEXT N_( \
     "Destination (URL) to use for the stream." )
 #define NAME_TEXT N_("Session name")
 #define NAME_LONGTEXT N_( \
@@ -96,8 +96,8 @@ vlc_module_begin();
                 ACCESS_LONGTEXT, VLC_FALSE );
     add_string( SOUT_CFG_PREFIX "mux", "", NULL, MUX_TEXT,
                 MUX_LONGTEXT, VLC_FALSE );
-    add_string( SOUT_CFG_PREFIX "dst", "", NULL, DST_TEXT,
-                DST_LONGTEXT, VLC_FALSE );
+    add_string( SOUT_CFG_PREFIX "dst", "", NULL, DEST_TEXT,
+                DEST_LONGTEXT, VLC_FALSE );
         change_unsafe();
 
     add_bool( SOUT_CFG_PREFIX "sap", VLC_FALSE, NULL, SAP_TEXT, SAP_LONGTEXT,




More information about the vlc-devel mailing list