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
85a5e8eb
Commit
85a5e8eb
authored
Jun 17, 2015
by
Pierre-Olivier Latour
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed Xcode 6.1 build warnings
parent
83a04a69
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
2 deletions
+2
-2
src/path.c
+1
-1
src/unix/posix.h
+1
-0
tests/checkout/checkout_helpers.c
+0
-1
No files found.
src/path.c
View file @
85a5e8eb
...
...
@@ -891,7 +891,7 @@ void git_path_iconv_clear(git_path_iconv_t *ic)
int
git_path_iconv
(
git_path_iconv_t
*
ic
,
const
char
**
in
,
size_t
*
inlen
)
{
char
*
nfd
=
*
in
,
*
nfc
;
char
*
nfd
=
(
char
*
)
*
in
,
*
nfc
;
size_t
nfdlen
=
*
inlen
,
nfclen
,
wantlen
=
nfdlen
,
alloclen
,
rv
;
int
retry
=
1
;
...
...
src/unix/posix.h
View file @
85a5e8eb
...
...
@@ -10,6 +10,7 @@
#include <stdio.h>
#include <dirent.h>
#include <sys/param.h>
#include <sys/time.h>
typedef
int
GIT_SOCKET
;
#define INVALID_SOCKET -1
...
...
tests/checkout/checkout_helpers.c
View file @
85a5e8eb
...
...
@@ -132,7 +132,6 @@ int checkout_count_callback(
void
tick_index
(
git_index
*
index
)
{
int
index_fd
;
git_time_t
ts
;
struct
timeval
times
[
2
];
...
...
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