Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell Belfer <rb@github.com>2013-11-19 00:14:50 +0400
committerRussell Belfer <rb@github.com>2013-11-19 00:14:50 +0400
commit8f2a3d6251291c0468e074563e16d4c41f59acb1 (patch)
treed092c5f2088eea3f5eb4384dbfeeda3f313bab14 /src/remote.h
parent8ea7472e087bfc43b3acd257f7264342b433cccb (diff)
Fix warnings
Diffstat (limited to 'src/remote.h')
-rw-r--r--src/remote.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/remote.h b/src/remote.h
index 33e4d68f8..4164a14b3 100644
--- a/src/remote.h
+++ b/src/remote.h
@@ -28,8 +28,8 @@ struct git_remote {
git_transfer_progress stats;
unsigned int need_pack;
git_remote_autotag_option_t download_tags;
- unsigned int check_cert;
- unsigned int update_fetchhead;
+ int check_cert;
+ int update_fetchhead;
};
const char* git_remote__urlfordirection(struct git_remote *remote, int direction);