aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/ci.h
diff options
context:
space:
mode:
authorEgor Tensin <egor@tensin.name>2024-12-26 12:08:58 +0100
committerEgor Tensin <egor@tensin.name>2024-12-26 12:08:58 +0100
commit9f40d20e1c97e2c85e26a6a13ccf04e60d9f83f5 (patch)
treeb5a1c96518c96974e53a70e02d4e684efc198bed /src/ci.h
parentupdate DEVELOPMENT.md (diff)
downloadcimple-9f40d20e1c97e2c85e26a6a13ccf04e60d9f83f5.tar.gz
cimple-9f40d20e1c97e2c85e26a6a13ccf04e60d9f83f5.zip
process: proc_ -> process_HEADmaster
Diffstat (limited to '')
-rw-r--r--src/ci.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ci.h b/src/ci.h
index 397f4a7..542243c 100644
--- a/src/ci.h
+++ b/src/ci.h
@@ -10,7 +10,7 @@
#include "process.h"
-int ci_run(struct proc_output *);
+int ci_run(struct process_output *);
/*
* This is a high-level function. It's basically equivalent to the following
@@ -25,6 +25,6 @@ int ci_run(struct proc_output *);
* rm -rf "$dir"
*
*/
-int ci_run_git_repo(const char *url, const char *rev, struct proc_output *);
+int ci_run_git_repo(const char *url, const char *rev, struct process_output *);
#endif