From d1f94520de68ced8ded5b622c8fb94ca4e7f49cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Denis-Courmont?= Date: Sun, 3 Dec 2017 17:54:47 +0200 Subject: [PATCH] demux: make p_sys void * (refs #18504, #17078) --- include/vlc_demux.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/vlc_demux.h b/include/vlc_demux.h index c305e8ccd3..fda7cecff5 100644 --- a/include/vlc_demux.h +++ b/include/vlc_demux.h @@ -88,7 +88,7 @@ struct demux_t unsigned int i_update; /* Demux sets them on change, Input removes them once take into account*/ } info; - demux_sys_t *p_sys; + void *p_sys; /* Weak link to parent input */ input_thread_t *p_input;