diff options
Diffstat (limited to 'pullreqd.c')
-rw-r--r-- | pullreqd.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); |