[RUN] Fix filter duplicates

This commit is contained in:
Dave Davenport 2017-09-10 19:50:26 +02:00
parent 9b0a430fd4
commit ec25204924

View file

@ -146,7 +146,7 @@ static int sort_func ( const void *a, const void *b, G_GNUC_UNUSED void *data )
else if ( bstr == NULL ) { else if ( bstr == NULL ) {
return -1; return -1;
} }
return g_ascii_strcasecmp ( astr, bstr ); return g_strcmp0 ( astr, bstr );
} }
/** /**