diff options
author | Vicent Martà <tanoku@gmail.com> | 2011-05-08 14:00:57 -0700 |
---|---|---|
committer | Vicent Martà <tanoku@gmail.com> | 2011-05-08 14:00:57 -0700 |
commit | cd2cc2dc363770d03a9d77206b97d0ee70244cad (patch) | |
tree | 1c402af940fcdfb4d7b0003f002e2ed8fa762a40 /src | |
parent | c912229e1f7ce2ef0bda110e8d66d43c9d6be32c (diff) | |
parent | 773bc20dd3f78d4e307ff54edd1e09f508f2a06f (diff) | |
download | libgit2-cd2cc2dc363770d03a9d77206b97d0ee70244cad.tar.gz |
Merge pull request #170 from jasonrm/development
Fix misspelling of git_index_append2 (was git_index_apppend2).
Diffstat (limited to 'src')
-rw-r--r-- | src/index.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.c b/src/index.c index 130d1fd36..f643e73fb 100644 --- a/src/index.c +++ b/src/index.c @@ -421,7 +421,7 @@ int git_index_add2(git_index *index, const git_index_entry *source_entry) return index_insert(index, source_entry, 1); } -int git_index_apppend2(git_index *index, const git_index_entry *source_entry) +int git_index_append2(git_index *index, const git_index_entry *source_entry) { return index_insert(index, source_entry, 0); } |