Commit fd014e1e authored by Christophe Mutricy's avatar Christophe Mutricy

size_t is unsigned and it's a bad idea to compare it to 0. Fixes #308.

Some one with VC7 should test this commit
parent 8fea082b
......@@ -2095,7 +2095,7 @@ static void Usage( vlc_t *p_this, char const *psz_module_name )
char *psz_text, *psz_spaces = psz_spaces_text;
char *psz_bra = NULL, *psz_type = NULL, *psz_ket = NULL;
char *psz_suf = "", *psz_prefix = NULL;
size_t i;
signed int i;
/* Skip deprecated options */
if( p_item->psz_current )
......
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