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
959a93e7
Commit
959a93e7
authored
Jul 13, 2014
by
Jacques Germishuys
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Silence unused variables warnings
parent
f59a34d2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
src/clone.c
+3
-0
src/transports/ssh.c
+1
-0
No files found.
src/clone.c
View file @
959a93e7
...
@@ -482,6 +482,9 @@ static const char *repository_base(git_repository *repo)
...
@@ -482,6 +482,9 @@ static const char *repository_base(git_repository *repo)
static
bool
can_link
(
const
char
*
src
,
const
char
*
dst
,
int
link
)
static
bool
can_link
(
const
char
*
src
,
const
char
*
dst
,
int
link
)
{
{
#ifdef GIT_WIN32
#ifdef GIT_WIN32
GIT_UNUSED
(
src
);
GIT_UNUSED
(
dst
);
GIT_UNUSED
(
link
);
return
false
;
return
false
;
#else
#else
...
...
src/transports/ssh.c
View file @
959a93e7
...
@@ -670,6 +670,7 @@ int git_transport_ssh_with_paths(git_transport **out, git_remote *owner, void *p
...
@@ -670,6 +670,7 @@ int git_transport_ssh_with_paths(git_transport **out, git_remote *owner, void *p
return
0
;
return
0
;
#else
#else
GIT_UNUSED
(
owner
);
GIT_UNUSED
(
owner
);
GIT_UNUSED
(
payload
);
assert
(
out
);
assert
(
out
);
*
out
=
NULL
;
*
out
=
NULL
;
...
...
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