From: Jean-Baptiste Kempf Date: Thu, 19 Feb 2015 13:48:48 +0000 (+0100) Subject: Mpeg mux: fix compilation X-Git-Url: https://git.sesse.net/?p=vlc;a=commitdiff_plain;h=e619f1efa431d6757002155eb298b2fa8ce071cf Mpeg mux: fix compilation --- diff --git a/modules/mux/mpeg/tables.c b/modules/mux/mpeg/tables.c index 82821c129e..01a7c68852 100644 --- a/modules/mux/mpeg/tables.c +++ b/modules/mux/mpeg/tables.c @@ -94,7 +94,7 @@ void BuildPAT( DVBPSI_HANDLE_PARAM(dvbpsi_t *p_dvbpsi) #if (DVBPSI_VERSION_INT >= DVBPSI_VERSION_WANTED(1,0,0)) p_section = dvbpsi_pat_sections_generate( p_dvbpsi, &patpsi, 0 ); #else - p_section = dvbpsi_GenPATSections( &pat, 0 /* max program per section */ ); + p_section = dvbpsi_GenPATSections( &patpsi, 0 /* max program per section */ ); #endif block_t *p_block = WritePSISection( p_section );