From cc6cad8e86dd2e9f9cb09798fb0cac12950e35ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Mart=C3=ADn=20Nieto?= Date: Fri, 3 Jan 2025 12:44:34 +0100 Subject: [PATCH] commit: adjust to the commit creation signature --- ext/rugged/rugged_commit.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/rugged/rugged_commit.c b/ext/rugged/rugged_commit.c index 704d72e29..dd89baea3 100644 --- a/ext/rugged/rugged_commit.c +++ b/ext/rugged/rugged_commit.c @@ -564,7 +564,7 @@ static VALUE rb_git_commit_create(VALUE self, VALUE rb_repo, VALUE rb_data) commit_data.message, commit_data.tree, commit_data.parent_count, - (git_commit * const *) commit_data.parents); + commit_data.parents); cleanup: 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) commit_data.message, commit_data.tree, commit_data.parent_count, - (git_commit * const *) commit_data.parents); + commit_data.parents); cleanup: free_commit_options(&commit_data);