summaryrefslogtreecommitdiff
path: root/include/git2/sys/filter.h
diff options
context:
space:
mode:
authorRussell Belfer <rb@github.com>2014-05-08 10:46:04 -0700
committerRussell Belfer <rb@github.com>2014-05-08 10:46:04 -0700
commit45c53eb6cb9ba8ae8bce7d5a70b30b458b7db7e2 (patch)
tree2e6d6dd77295c8dddd35c97f0e9071ec7237d36a /include/git2/sys/filter.h
parent5269008cf632efcd6a16f6160ec44244ce442400 (diff)
downloadlibgit2-45c53eb6cb9ba8ae8bce7d5a70b30b458b7db7e2.tar.gz
Use unsigned type for APIs with opt flag mask
Diffstat (limited to 'include/git2/sys/filter.h')
-rw-r--r--include/git2/sys/filter.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/git2/sys/filter.h b/include/git2/sys/filter.h
index 1b21a9d30..60248271a 100644
--- a/include/git2/sys/filter.h
+++ b/include/git2/sys/filter.h
@@ -58,7 +58,7 @@ GIT_EXTERN(int) git_filter_list_new(
git_filter_list **out,
git_repository *repo,
git_filter_mode_t mode,
- git_filter_opt_t options);
+ uint32_t options);
/**
* Add a filter to a filter list with the given payload.
@@ -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 git_filter_opt_t options to be applied
+ * Get the combination git_filter_opt_t options to be applied
*/
-GIT_EXTERN(git_filter_opt_t) git_filter_source_options(const git_filter_source *src);
+GIT_EXTERN(uint32_t) git_filter_source_options(const git_filter_source *src);
/*
* struct git_filter