mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-06-07 15:10:49 +00:00
After using SDL_qsort, mark sort_entries() as SDLCALL
This commit is contained in:
parent
1827a0bf62
commit
6f344f29b8
1 changed files with 1 additions and 1 deletions
|
|
@ -659,7 +659,7 @@ static int filter_entries(const struct dirent *entry)
|
|||
{
|
||||
return IsJoystickDeviceNode(entry->d_name);
|
||||
}
|
||||
static int sort_entries(const void *_a, const void *_b)
|
||||
static int SDLCALL sort_entries(const void *_a, const void *_b)
|
||||
{
|
||||
const struct dirent **a = (const struct dirent **)_a;
|
||||
const struct dirent **b = (const struct dirent **)_b;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue