Skip to content

Commit 010e611

Browse files
authored
Merge pull request #982 from libgit2/cmn/bump-libgit2
Bump libgit2 to c6111ec0
2 parents daea268 + 23f7bc0 commit 010e611

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ext/rugged/rugged_commit.c

+2-2
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-
(git_commit * const *) commit_data.parents);
567+
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-
(git_commit * const *) commit_data.parents);
816+
commit_data.parents);
817817

818818
cleanup:
819819
free_commit_options(&commit_data);

vendor/libgit2

Submodule libgit2 updated 258 files

0 commit comments

Comments
 (0)