Fix compilation on OpenBSD

This commit is contained in:
Carlos Martín Nieto 2013-04-15 20:00:42 +02:00
parent 2d2260da41
commit 872ca1d302
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ char *p_realpath(const char *pathname, char *resolved)
/* Figure out if the file exists */
if (!access(ret, F_OK))
ret;
return ret;
return NULL;
}

View File

@ -672,7 +672,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__)
#if defined(__MINGW32__) || defined(__OpenBSD__)
git__insertsort_r(els, nel, elsize, NULL, cmp, payload);
#elif defined(GIT_WIN32)
git__qsort_r_glue glue = { cmp, payload };