Extension order: show files without extension on top

This commit is contained in:
Arun Prakash Jana 2020-01-08 21:45:54 +05:30
parent 604a8fafcc
commit 9a757c4905
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with 2 additions and 2 deletions

View File

@ -1870,10 +1870,10 @@ static int entrycmp(const void *va, const void *vb)
if (extna || extnb) {
if (!extna)
return 1;
return -1;
if (!extnb)
return -1;
return 1;
int ret = strcasecmp(extna, extnb);