Commit a155e540 authored by Rémi Duraffort's avatar Rémi Duraffort

sort: we have a macro so use it and remove unused variable.

parent 58578d2a
......@@ -89,8 +89,6 @@ static int playlist_ItemArraySort( playlist_t *p_playlist, int i_items,
{
int i_position;
playlist_item_t *p_temp;
vlc_value_t val;
val.b_bool = true;
sort_mode = i_mode;
sort_type = i_type;
......@@ -235,23 +233,7 @@ static int playlist_cmp(const void *first, const void *second)
}
else
{
if ( (*(playlist_item_t **)first)->p_input->psz_name != NULL &&
(*(playlist_item_t **)second)->p_input->psz_name != NULL )
{
i_test = strcasecmp( (*(playlist_item_t **)first)->p_input->psz_name,
(*(playlist_item_t **)second)->p_input->psz_name );
}
else if ( (*(playlist_item_t **)first)->p_input->psz_name != NULL &&
(*(playlist_item_t **)second)->p_input->psz_name == NULL )
{
i_test = 1;
}
else if ( (*(playlist_item_t **)first)->p_input->psz_name == NULL &&
(*(playlist_item_t **)second)->p_input->psz_name != NULL )
{
i_test = -1;
}
else i_test = 0;
META_STRCASECMP_NAME();
}
}
else if( sort_mode == SORT_URI )
......
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