summaryrefslogtreecommitdiff
path: root/src/clone.c
diff options
context:
space:
mode:
authorVicent Marti <vicent@github.com>2014-08-07 18:00:57 +0200
committerVicent Marti <vicent@github.com>2014-08-07 18:00:57 +0200
commit8f759ac0b373eea9dcec680524a68a527d637937 (patch)
tree99ca32351711018c855ac06e3859c5be9ed86ea5 /src/clone.c
parente0af2517bf9055441cfa34c45087c0ee9defe7e9 (diff)
parent07d03d31456899a39f97425a3d09903d7a54ed3f (diff)
downloadlibgit2-8f759ac0b373eea9dcec680524a68a527d637937.tar.gz
Merge pull request #2471 from jacquesg/compatibility-cleanup
Compatibility/Portability cleanup
Diffstat (limited to 'src/clone.c')
-rw-r--r--src/clone.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/clone.c b/src/clone.c
index 523b1fe76..7835be1b1 100644
--- a/src/clone.c
+++ b/src/clone.c
@@ -488,6 +488,9 @@ static const char *repository_base(git_repository *repo)
static bool can_link(const char *src, const char *dst, int link)
{
#ifdef GIT_WIN32
+ GIT_UNUSED(src);
+ GIT_UNUSED(dst);
+ GIT_UNUSED(link);
return false;
#else