diff options
author | Egor Tensin <egor@tensin.name> | 2024-12-26 11:44:15 +0100 |
---|---|---|
committer | Egor Tensin <egor@tensin.name> | 2024-12-26 11:44:15 +0100 |
commit | b4df6f859a2c0804069a7c2fe26656d982828b1a (patch) | |
tree | d66be4321a52f609d04df1eb3ef27db541b172b3 /src/ci.c | |
parent | Makefile: remove obsolete comment (diff) | |
download | cimple-b4df6f859a2c0804069a7c2fe26656d982828b1a.tar.gz cimple-b4df6f859a2c0804069a7c2fe26656d982828b1a.zip |
file: rename syscall wrappers
Diffstat (limited to 'src/ci.c')
-rw-r--r-- | src/ci.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -86,7 +86,7 @@ int ci_run_git_repo(const char *url, const char *rev, struct proc_output *output if (ret < 0) goto exit; - ret = my_chdir(git_repository_workdir(repo), &oldpwd); + ret = chdir_wrapper(git_repository_workdir(repo), &oldpwd); if (ret < 0) goto free_repo; @@ -95,7 +95,7 @@ int ci_run_git_repo(const char *url, const char *rev, struct proc_output *output goto oldpwd; oldpwd: - my_chdir(oldpwd, NULL); + chdir_wrapper(oldpwd, NULL); free(oldpwd); free_repo: |