Commit 218c644c authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Fix warning

parent cdb3d4e9
...@@ -1468,7 +1468,7 @@ static void Usage( libvlc_int_t *p_this, char const *psz_search ) ...@@ -1468,7 +1468,7 @@ static void Usage( libvlc_int_t *p_this, char const *psz_search )
while( *pp_shortcut ) while( *pp_shortcut )
{ {
if( b_strict ? !strcmp( psz_search, *pp_shortcut ) if( b_strict ? !strcmp( psz_search, *pp_shortcut )
: strstr( *pp_shortcut, psz_search ) ) : !!strstr( *pp_shortcut, psz_search ) )
break; break;
pp_shortcut ++; pp_shortcut ++;
} }
......
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