diff options
author | Linquize <linquize@yahoo.com.hk> | 2013-09-08 17:15:42 +0800 |
---|---|---|
committer | Linquize <linquize@yahoo.com.hk> | 2013-09-19 23:14:06 +0800 |
commit | 66566516ce5171111ea4c5a8160adb4b0b0dc675 (patch) | |
tree | 20d7374e602911f282ddfedf8449c8b8176d85d9 /include/git2/index.h | |
parent | ef6389ad504037e7a4311adbf14f1fa5a5aa4190 (diff) | |
download | libgit2-66566516ce5171111ea4c5a8160adb4b0b0dc675.tar.gz |
Fix warning
Diffstat (limited to 'include/git2/index.h')
-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 |