From 3ac50e1d020e7ab2c759ca87aff51a57eb3c14f2 Mon Sep 17 00:00:00 2001 From: Tobias Stoeckmann Date: Fri, 13 Sep 2024 21:49:08 +0200 Subject: [PATCH] lib/run_part: Use correct data types Signed-off-by: Tobias Stoeckmann --- lib/run_part.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/run_part.c b/lib/run_part.c index 2514e15f3..5ef05d980 100644 --- a/lib/run_part.c +++ b/lib/run_part.c @@ -17,9 +17,9 @@ int run_part (char *script_path, const char *name, const char *action) { - int pid; + pid_t pid; int wait_status; - int pid_status; + pid_t pid_status; char *args[] = { script_path, NULL }; pid=fork(); -- 2.47.3