]> git.sesse.net Git - vlc/commitdiff
Compile fix
authorClément Stenac <zorglub@videolan.org>
Wed, 28 Jun 2006 15:16:23 +0000 (15:16 +0000)
committerClément Stenac <zorglub@videolan.org>
Wed, 28 Jun 2006 15:16:23 +0000 (15:16 +0000)
src/input/es_out.c

index 19e7d6377a9b290f3c7330c8503b6d6f4c595a44..4ddf0177ae7c8a6ae3f4b8a9e197651e8bd2043e 100644 (file)
@@ -574,7 +574,7 @@ static void EsOutProgramMeta( es_out_t *out, int i_group, vlc_meta_t *p_meta )
     sprintf( psz_cat, "%s %d", _("Program"), i_group );
 
     if( p_meta->psz_title ) psz_title = p_meta->psz_title;
-    if( p_meta->psz_provider) psz_provider = p_meta->psz_publisher;
+    if( p_meta->psz_publisher ) psz_provider = p_meta->psz_publisher;
     if( p_meta->psz_nowplaying ) psz_now_playing = p_meta->psz_nowplaying;
 
     if( !psz_title && !psz_now_playing )