diff options
author | Vicent Martà <vicent@github.com> | 2012-09-28 09:56:42 -0700 |
---|---|---|
committer | Vicent Martà <vicent@github.com> | 2012-09-28 09:56:42 -0700 |
commit | b55fd885fccc788c07c81990a9283e6ea05858a7 (patch) | |
tree | 64eb7f9f52c9d27f4aa0ad00d2249af39e0ee2fc /tests-clar/diff/patch.c | |
parent | 5942bd18bf557cc70873009c4303a421c83f0129 (diff) | |
parent | bae957b95d59a840df72a725b06f00635471cfd8 (diff) | |
download | libgit2-b55fd885fccc788c07c81990a9283e6ea05858a7.tar.gz |
Merge pull request #941 from arrbee/diff-separate-iterators
Create a diff patch object as a replacement for iterators
Diffstat (limited to 'tests-clar/diff/patch.c')
-rw-r--r-- | tests-clar/diff/patch.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests-clar/diff/patch.c b/tests-clar/diff/patch.c index 05e748667..e8468386c 100644 --- a/tests-clar/diff/patch.c +++ b/tests-clar/diff/patch.c @@ -23,8 +23,8 @@ void test_diff_patch__cleanup(void) static int check_removal_cb( void *cb_data, - git_diff_delta *delta, - git_diff_range *range, + const git_diff_delta *delta, + const git_diff_range *range, char line_origin, const char *formatted_output, size_t output_len) |