1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-11-18 13:54:36 -05:00

[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 ) {
return -1;
}
return g_ascii_strcasecmp ( astr, bstr );
return g_strcmp0 ( astr, bstr );
}
/**