summaryrefslogtreecommitdiff
path: root/git.h
diff options
context:
space:
mode:
authormrb0nk500 <b0nk@b0nk.xyz>2022-08-01 11:13:49 -0300
committermrb0nk500 <b0nk@b0nk.xyz>2022-08-01 11:14:22 -0300
commit60fe6842a58366460a8cf3b246b016fb12e9db4b (patch)
tree99a3dd62241240398b2c3585c243b5523505b28c /git.h
parent705cd82152b3228cb5162c8e5680b77074bdac91 (diff)
git: Make `merge_branch` a string instead of a `git_branch *`
Diffstat (limited to 'git.h')
-rw-r--r--git.h2
1 files changed, 1 insertions, 1 deletions
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);