diff options
author | Vicent Martà <tanoku@gmail.com> | 2012-05-17 20:35:48 +0200 |
---|---|---|
committer | Vicent Martà <tanoku@gmail.com> | 2012-05-18 01:26:16 +0200 |
commit | 4fbd1c007e6c72b32c0dd2a29036a5670f85120a (patch) | |
tree | 1c35a3fe06ffe4274190a9ab3c0ffb5eade19aac /include/git2 | |
parent | fe3bcf7d7a1950d430a043a2ae11b81d231d6b1c (diff) | |
download | libgit2-4fbd1c007e6c72b32c0dd2a29036a5670f85120a.tar.gz |
refs: git_reference_listall -> git_reference_list
Diffstat (limited to 'include/git2')
-rw-r--r-- | include/git2/refs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/git2/refs.h b/include/git2/refs.h index 2073aabc..9abc3236 100644 --- a/include/git2/refs.h +++ b/include/git2/refs.h @@ -256,7 +256,7 @@ GIT_EXTERN(int) git_reference_packall(git_repository *repo); * listing. * @return GIT_SUCCESS or an error code */ -GIT_EXTERN(int) git_reference_listall(git_strarray *array, git_repository *repo, unsigned int list_flags); +GIT_EXTERN(int) git_reference_list(git_strarray *array, git_repository *repo, unsigned int list_flags); /** |