From 60fe6842a58366460a8cf3b246b016fb12e9db4b Mon Sep 17 00:00:00 2001 From: mrb0nk500 Date: Mon, 1 Aug 2022 11:13:49 -0300 Subject: git: Make `merge_branch` a string instead of a `git_branch *` --- git.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git.h b/git.h index 71cecd0..daefbf0 100644 --- a/git.h +++ b/git.h @@ -47,7 +47,7 @@ struct pull_request { file **patches; /* Patch files of pull request. */ git_branch *branch; /* Branch of pull request. */ }; - git_branch *merge_branch; /* Branch to merge pull request with. */ + char *merge_branch; /* Branch to merge pull request with. */ }; extern void cleanup_git(git_repo **repos); -- cgit v1.2.3-13-gbd6f