[vlc-commits] itml: always use p_sys as an uintptr_t

Steve Lhomme git at videolan.org
Wed Jul 11 11:13:23 CEST 2018


vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Wed Jul 11 11:12:56 2018 +0200| [1258a23300cc6cdeb449c432ec1ee28b8680070f] | committer: Steve Lhomme

itml: always use p_sys as an uintptr_t

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=1258a23300cc6cdeb449c432ec1ee28b8680070f
---

 modules/demux/playlist/itml.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/demux/playlist/itml.c b/modules/demux/playlist/itml.c
index bb66765c19..bfbff305e7 100644
--- a/modules/demux/playlist/itml.c
+++ b/modules/demux/playlist/itml.c
@@ -282,8 +282,8 @@ static bool parse_tracks_dict( stream_t *p_demux, input_item_node_t *p_input_nod
     parse_dict( p_demux, p_input_node, NULL, p_xml_reader,
                 "dict", tracks_elements );
 
-    msg_Info( p_demux, "added %" PRIiPTR " tracks successfully",
-              p_demux->p_sys );
+    msg_Info( p_demux, "added %" PRIuPTR " tracks successfully",
+              (uintptr_t)p_demux->p_sys );
 
     return true;
 }



More information about the vlc-commits mailing list