Commit 872ca1d3 by Carlos Martín Nieto

Fix compilation on OpenBSD

parent 2d2260da
......@@ -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;
}
......
......@@ -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 };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment