Case insensitive sorting
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4926 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
c051eda028
commit
0112fc8b0b
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ static int compare(const void* p1, const void* p2)
|
|||
char *s1 = *(char **)p1;
|
||||
char *s2 = *(char **)p2;
|
||||
|
||||
return rb->strcmp(s2, s1);
|
||||
return rb->strcasecmp(s2, s1);
|
||||
}
|
||||
|
||||
static void sort_buffer(void)
|
||||
|
|
Loading…
Reference in a new issue