diff options
| author | Miguel Arroz <750683+arroz@users.noreply.github.com> | 2022-01-01 15:17:08 -0800 |
|---|---|---|
| committer | Miguel Arroz <750683+arroz@users.noreply.github.com> | 2022-01-01 15:23:00 -0800 |
| commit | a3436cde9fbdb0ce9eb3c3e0727e3093560e10e9 (patch) | |
| tree | ceeacac5ef89465894ab8ea37922d634e251296d /src/diff_tform.c | |
| parent | 50b4d53ef3897fd4066cd74734f4a6e141a64201 (diff) | |
| download | libgit2-a3436cde9fbdb0ce9eb3c3e0727e3093560e10e9.tar.gz | |
#6154 git_status_list_new case insensitive fix
Diffstat (limited to 'src/diff_tform.c')
| -rw-r--r-- | src/diff_tform.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/diff_tform.c b/src/diff_tform.c index d14134071..f9836d245 100644 --- a/src/diff_tform.c +++ b/src/diff_tform.c @@ -375,7 +375,7 @@ static int apply_splits_and_deletes( size_t i; git_diff_delta *delta; - if (git_vector_init(&onto, expected_size, git_diff_delta__cmp) < 0) + if (git_vector_init(&onto, expected_size, diff->deltas._cmp) < 0) return -1; /* build new delta list without TO_DELETE and splitting TO_SPLIT */ |
