Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2015-07-10 17:25:45 +0300
committerEdward Thomson <ethomson@edwardthomson.com>2015-07-10 17:53:30 +0300
commit9a99ca7b2108e3c3ca483d695cf0f46de386630a (patch)
treeb71a5867fa190dc4ca4cbcf3ba7f9eb4d5a4c356
parentbae467aec4de8bb7d0c10a3a11e585ab6d05dd8f (diff)
wildcard filters: move CHANGELOG message to 0.23+1
-rw-r--r--CHANGELOG.md8
-rw-r--r--tests/filter/wildcard.c3
2 files changed, 5 insertions, 6 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0aae4da6a..5e15a2121 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,10 @@ v0.23 + 1
### Changes or improvements
+* Custom filters can now be registered with wildcard attributes, for
+ example `filter=*`. Consumers should examine the attributes parameter
+ of the `check` function for details.
+
### API additions
### API removals
@@ -88,10 +92,6 @@ v0.23
* If libcurl is installed, we will use it to connect to HTTP(S)
servers.
-* Custom filters can now be registered with wildcard attributes, for
- example `filter=*`. Consumers should examine the attributes parameter
- of the `check` function for details.
-
### API additions
* The `git_merge_options` gained a `file_flags` member.
diff --git a/tests/filter/wildcard.c b/tests/filter/wildcard.c
index 8031ad3d3..999b33653 100644
--- a/tests/filter/wildcard.c
+++ b/tests/filter/wildcard.c
@@ -98,7 +98,6 @@ static void wildcard_filter_cleanup(git_filter *self, void *payload)
{
GIT_UNUSED(self);
git__free(payload);
- return 0;
}
static void wildcard_filter_free(git_filter *f)
@@ -106,7 +105,7 @@ static void wildcard_filter_free(git_filter *f)
git__free(f);
}
-static git_filter *create_wildcard_filter()
+static git_filter *create_wildcard_filter(void)
{
git_filter *filter = git__calloc(1, sizeof(git_filter));
cl_assert(filter);