[vlc-devel] commit: libvlc: fix printf warning (Derk-Jan Hartman )
git version control
git at videolan.org
Wed Oct 15 17:26:28 CEST 2008
vlc | branch: master | Derk-Jan Hartman <hartman at videolan.org> | Mon Oct 13 17:58:59 2008 +0200| [7089382fa70161b29bce0670b6b832916e76d270] | committer: Derk-Jan Hartman
libvlc: fix printf warning
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=7089382fa70161b29bce0670b6b832916e76d270
---
src/libvlc.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/libvlc.c b/src/libvlc.c
index d6e6be4..2523f8d 100644
--- a/src/libvlc.c
+++ b/src/libvlc.c
@@ -488,7 +488,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
size_t module_count;
module_t **list = module_list_get( &module_count );
module_list_free( list );
- msg_Dbg( p_libvlc, "module bank initialized (%u modules)", module_count );
+ msg_Dbg( p_libvlc, "module bank initialized (%zu modules)", module_count );
/* Check for help on modules */
if( (p_tmp = config_GetPsz( p_libvlc, "module" )) )
More information about the vlc-devel
mailing list