diff options
author | Vicent Marti <tanoku@gmail.com> | 2014-01-29 18:17:08 +0100 |
---|---|---|
committer | Edward Thomson <ethomson@microsoft.com> | 2014-01-29 13:15:51 -0800 |
commit | 53bec813a81cb0e1e970df69281ab4a3e6c2a47c (patch) | |
tree | f9a057c5aba49b0a81219771a3cf6183e8358846 /src/index.h | |
parent | 95fbedcd8eaaff2747196e20abd959596baf7e98 (diff) | |
download | libgit2-53bec813a81cb0e1e970df69281ab4a3e6c2a47c.tar.gz |
index: Compare with given len
Diffstat (limited to 'src/index.h')
-rw-r--r-- | src/index.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.h b/src/index.h index 4c448fabf..3dea4aa14 100644 --- a/src/index.h +++ b/src/index.h @@ -56,7 +56,7 @@ extern int git_index_entry__cmp(const void *a, const void *b); extern int git_index_entry__cmp_icase(const void *a, const void *b); extern int git_index__find( - size_t *at_pos, git_index *index, const char *path, int stage); + size_t *at_pos, git_index *index, const char *path, int path_len, int stage); extern void git_index__set_ignore_case(git_index *index, bool ignore_case); |