Commit 54faac8d authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Change int to size_t when needed. Kills a warning.

parent 6d4276b4
......@@ -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 )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment