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 /src/refs.c | |
parent | fe3bcf7d7a1950d430a043a2ae11b81d231d6b1c (diff) | |
download | libgit2-4fbd1c007e6c72b32c0dd2a29036a5670f85120a.tar.gz |
refs: git_reference_listall -> git_reference_list
Diffstat (limited to 'src/refs.c')
-rw-r--r-- | src/refs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/refs.c b/src/refs.c index 28e8f786b..9ba09249c 100644 --- a/src/refs.c +++ b/src/refs.c @@ -1518,7 +1518,7 @@ static int cb__reflist_add(const char *ref, void *data) return git_vector_insert((git_vector *)data, git__strdup(ref)); } -int git_reference_listall( +int git_reference_list( git_strarray *array, git_repository *repo, unsigned int list_flags) |