Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
872ca1d3
Commit
872ca1d3
authored
Apr 15, 2013
by
Carlos Martín Nieto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix compilation on OpenBSD
parent
2d2260da
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
src/unix/realpath.c
+1
-1
src/util.c
+1
-1
No files found.
src/unix/realpath.c
View file @
872ca1d3
...
...
@@ -22,7 +22,7 @@ char *p_realpath(const char *pathname, char *resolved)
/* Figure out if the file exists */
if
(
!
access
(
ret
,
F_OK
))
ret
;
ret
urn
ret
;
return
NULL
;
}
...
...
src/util.c
View file @
872ca1d3
...
...
@@ -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
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment