]> git.sesse.net Git - vlc/commitdiff
Change int to size_t when needed. Kills a warning.
authorJean-Baptiste Kempf <jb@videolan.org>
Wed, 12 Mar 2008 00:46:53 +0000 (17:46 -0700)
committerJean-Baptiste Kempf <jb@videolan.org>
Wed, 12 Mar 2008 01:29:29 +0000 (18:29 -0700)
modules/access/bda/bda.c

index 2d280b1cfa5f053d883932c9321e5bedd148772f..563f627189bef70fc287372b9cd60def52de17bc 100644 (file)
@@ -389,7 +389,8 @@ static int ParsePath( access_t *p_access, const char* psz_module,
     char*       psz_token;
     char*       psz_value;
     vlc_value_t v_value;
-    int         i_token_len, i_param_len, i_this_param;
+    size_t      i_token_len, i_param_len;
+    int         i_this_param;
     char        psz_full_name[128];
 
     if( i_param_count > MAXPARAM )