]> git.sesse.net Git - vlc/commitdiff
made a format-only string untranslateable
authorSigmund Augdal Helberg <sigmunau@videolan.org>
Mon, 31 Mar 2003 23:37:36 +0000 (23:37 +0000)
committerSigmund Augdal Helberg <sigmunau@videolan.org>
Mon, 31 Mar 2003 23:37:36 +0000 (23:37 +0000)
modules/demux/ogg.c

index 4f60e0147b7932454685736ce9ee7e0c0a68e1ce..49441593eb3d60853f0e375aec181bbc5b36dc43 100644 (file)
@@ -2,7 +2,7 @@
  * ogg.c : ogg stream input module for vlc
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $Id: ogg.c,v 1.22 2003/03/30 18:14:37 gbazin Exp $
+ * $Id: ogg.c,v 1.23 2003/03/31 23:37:36 sigmunau Exp $
  *
  * Authors: Gildas Bazin <gbazin@netcourrier.com>
  * 
@@ -810,7 +810,7 @@ static int Ogg_FindLogicalStreams( input_thread_t *p_input, demux_sys_t *p_ogg)
                             sprintf( title, "Stream %d", p_ogg->i_streams );
                             p_cat = input_InfoCategory( p_input, title );
                             input_AddInfo( p_cat, _("Type"), _("Audio") );
-                            input_AddInfo( p_cat, _("Codec"), _("%.4s")
+                            input_AddInfo( p_cat, _("Codec"), "%.4s"
                                            (char *)&p_stream->i_fourcc );
                             input_AddInfo( p_cat, _("Sample Rate"), "%d",
                                            p_stream->p_wf->nSamplesPerSec );