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:
parent
9b0a430fd4
commit
ec25204924
1 changed files with 1 additions and 1 deletions
|
@ -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 );
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue