]> git.sesse.net Git - vlc/commitdiff
libvlc: fix printf warning
authorDerk-Jan Hartman <hartman@videolan.org>
Mon, 13 Oct 2008 15:58:59 +0000 (17:58 +0200)
committerDerk-Jan Hartman <hartman@videolan.org>
Wed, 15 Oct 2008 14:29:37 +0000 (16:29 +0200)
src/libvlc.c

index d6e6be4efc792681a9a6ed1c1f438b664032ec3d..2523f8dd979f2034a2fe78b80dbad4a1551ce319 100644 (file)
@@ -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" )) )