Merge pull request #1554 from sba1/sort-amiga-fix

Fixed qsort_r() problem when targeting AmigaOS.
This commit is contained in:
Russell Belfer 2013-05-07 00:31:40 -07:00
commit 51e297dd18

View File

@ -685,7 +685,7 @@ static int GIT_STDLIB_CALL git__qsort_r_glue_cmp(
void git__qsort_r(
void *els, size_t nel, size_t elsize, git__sort_r_cmp cmp, void *payload)
{
#if defined(__MINGW32__) || defined(__OpenBSD__)
#if defined(__MINGW32__) || defined(__OpenBSD__) || defined(AMIGA)
git__insertsort_r(els, nel, elsize, NULL, cmp, payload);
#elif defined(GIT_WIN32)
git__qsort_r_glue glue = { cmp, payload };