diff options
author | Jason R. McNeil <jason@jasonrm.net> | 2011-05-03 22:22:42 -0700 |
---|---|---|
committer | Jason R. McNeil <jason@jasonrm.net> | 2011-05-03 22:22:42 -0700 |
commit | 773bc20dd3f78d4e307ff54edd1e09f508f2a06f (patch) | |
tree | a6bf89ab8010a68dd83bbce54219e0f33b9a10f5 /src | |
parent | cc3b82e376e0216c1af4ad46d24327d61e9efd99 (diff) | |
download | libgit2-773bc20dd3f78d4e307ff54edd1e09f508f2a06f.tar.gz |
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); } |