summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pullreqd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pullreqd.c b/pullreqd.c
index a70d1b1..30be263 100644
--- a/pullreqd.c
+++ b/pullreqd.c
@@ -181,11 +181,11 @@ int main_loop(config *cfg, int *listen_sockets, git_repo **repos) {
for (; !done;) {
pull_request *new_pr;
- if (create_pull_request_dir(pr, idx, cfg->pr_root) < 0) {
+ if (create_pull_request_dir(pr, idx, cfg->pr_root, "") < 0) {
log(LOG_ERR, "Failed to create Pull Request directory.");
return -1;
}
- new_pr = get_pull_request(idx, cfg->pr_root);
+ new_pr = get_pull_request(idx, cfg->pr_root, "");
if (new_pr == NULL) {
char *idx_str = index_to_str(idx);
log(LOG_ERR, "Failed to get Pull Request #%s.", idx_str);