diff options
author | Vicent Martà <vicent@github.com> | 2013-09-21 09:34:03 -0700 |
---|---|---|
committer | Vicent Martà <vicent@github.com> | 2013-09-21 09:34:03 -0700 |
commit | 92d19d16711c059c768063956abd31db346d2e7b (patch) | |
tree | 2110237444fb9e24463f159675734f1dd6f0a028 /include/git2 | |
parent | daef29ea3ed84c2ec558c46fa08077b5b55fe63d (diff) | |
parent | 66566516ce5171111ea4c5a8160adb4b0b0dc675 (diff) | |
download | libgit2-92d19d16711c059c768063956abd31db346d2e7b.tar.gz |
Merge pull request #1840 from linquize/warning
Fix warning
Diffstat (limited to 'include/git2')
-rw-r--r-- | include/git2/index.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/git2/index.h b/include/git2/index.h index b44535601..ba0bcc984 100644 --- a/include/git2/index.h +++ b/include/git2/index.h @@ -219,7 +219,7 @@ GIT_EXTERN(unsigned int) git_index_caps(const git_index *index); * @param caps A combination of GIT_INDEXCAP values * @return 0 on success, -1 on failure */ -GIT_EXTERN(int) git_index_set_caps(git_index *index, unsigned int caps); +GIT_EXTERN(int) git_index_set_caps(git_index *index, int caps); /** * Update the contents of an existing index object in memory |