diff options
author | Edward Thomson <ethomson@microsoft.com> | 2015-02-19 11:09:54 -0500 |
---|---|---|
committer | Edward Thomson <ethomson@microsoft.com> | 2015-02-19 11:09:54 -0500 |
commit | 795eaccd667ce24c290b6211ca0c6a84f84e7c2b (patch) | |
tree | bdef91425a91ee616f3358630ee9f2a25ede27fd /include/git2/sys | |
parent | d4cf167515d3ed7b27c1358fc2e19b9caf66e8ad (diff) | |
download | libgit2-795eaccd667ce24c290b6211ca0c6a84f84e7c2b.tar.gz |
git_filter_opt_t -> git_filter_flag_t
For consistency with the rest of the library, where an opt is an
options *structure*.
Diffstat (limited to 'include/git2/sys')
-rw-r--r-- | include/git2/sys/filter.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/git2/sys/filter.h b/include/git2/sys/filter.h index 9b560fa75..5fd8d5566 100644 --- a/include/git2/sys/filter.h +++ b/include/git2/sys/filter.h @@ -123,9 +123,9 @@ GIT_EXTERN(const git_oid *) git_filter_source_id(const git_filter_source *src); GIT_EXTERN(git_filter_mode_t) git_filter_source_mode(const git_filter_source *src); /** - * Get the combination git_filter_opt_t options to be applied + * Get the combination git_filter_flag_t options to be applied */ -GIT_EXTERN(uint32_t) git_filter_source_options(const git_filter_source *src); +GIT_EXTERN(uint32_t) git_filter_source_flags(const git_filter_source *src); /* * struct git_filter |