Skip to content

Commit daea268

Browse files
authored
Merge pull request #981 from libgit2/cmn/update-libgit2
Update libgit2 to 15668ba5
2 parents 57257cb + 08f538f commit daea268

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
ruby: [ '2.6', '2.7', '3.0', '3.1', '3.2' ]
16-
os: [ macOS-latest ]
16+
os: [ macOS-12 ]
1717
runs-on: ${{ matrix.os }}
1818

1919
name: Ruby ${{ matrix.ruby }} on ${{ matrix.os }}

ext/rugged/rugged_commit.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -564,7 +564,7 @@ static VALUE rb_git_commit_create(VALUE self, VALUE rb_repo, VALUE rb_data)
564564
commit_data.message,
565565
commit_data.tree,
566566
commit_data.parent_count,
567-
commit_data.parents);
567+
(git_commit * const *) commit_data.parents);
568568

569569
cleanup:
570570
free_commit_options(&commit_data);
@@ -813,7 +813,7 @@ static VALUE rb_git_commit_create_to_s(VALUE self, VALUE rb_repo, VALUE rb_data)
813813
commit_data.message,
814814
commit_data.tree,
815815
commit_data.parent_count,
816-
commit_data.parents);
816+
(git_commit * const *) commit_data.parents);
817817

818818
cleanup:
819819
free_commit_options(&commit_data);

vendor/libgit2

Submodule libgit2 updated 227 files

0 commit comments

Comments
 (0)