From: Gildas Bazin Date: Fri, 4 Mar 2005 11:13:42 +0000 (+0000) Subject: * ../include/vlc_spu.h: fixed typo that was triggering a segfault with --enable-memor... X-Git-Tag: 0.8.2~983 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=aec298abc6761a551a208a0af4857d2a5c72f11d;p=vlc * ../include/vlc_spu.h: fixed typo that was triggering a segfault with --enable-memory-optimize. --- diff --git a/include/vlc_spu.h b/include/vlc_spu.h index f02dca0b41..bfb8e0ec47 100644 --- a/include/vlc_spu.h +++ b/include/vlc_spu.h @@ -37,7 +37,7 @@ struct spu_t VLC_COMMON_MEMBERS vlc_mutex_t subpicture_lock; /**< subpicture heap lock */ - subpicture_t p_subpicture[VOUT_MAX_PICTURES]; /**< subpictures */ + subpicture_t p_subpicture[VOUT_MAX_SUBPICTURES]; /**< subpictures */ int i_channel; /**< number of subpicture channels registered */ filter_t *p_blend; /**< alpha blending module */