[vlc-devel] commit: vcdx: Use %zu in format for size_t. (Kill a warning). (Pierre d' Herbemont )
git version control
git at videolan.org
Thu Aug 20 18:38:28 CEST 2009
vlc | branch: master | Pierre d'Herbemont <pdherbemont at free.fr> | Thu Aug 20 18:15:42 2009 +0200| [9e8dd865eb34807cb3ca2ef4e244df6ff95977dc] | committer: Pierre d'Herbemont
vcdx: Use %zu in format for size_t. (Kill a warning).
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=9e8dd865eb34807cb3ca2ef4e244df6ff95977dc
---
modules/access/vcdx/access.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/access/vcdx/access.c b/modules/access/vcdx/access.c
index d661616..c16bf9e 100644
--- a/modules/access/vcdx/access.c
+++ b/modules/access/vcdx/access.c
@@ -220,7 +220,7 @@ VCDReadBlock( access_t * p_access )
if ( p_vcdplayer->i_lsn >= i_lsn && i_lsn != VCDINFO_NULL_LSN )
{
dbg_print( (INPUT_DBG_LSN|INPUT_DBG_PBC),
- "entry change to %d, current LSN %u >= end %u",
+ "entry change to %zu, current LSN %u >= end %u",
i_entry, p_vcdplayer->i_lsn, i_lsn);
p_vcdplayer->play_item.num = i_entry;
More information about the vlc-devel
mailing list