From: Tobias Stoeckmann Date: Fri, 13 Sep 2024 19:49:08 +0000 (+0200) Subject: lib/run_part: Use correct data types X-Git-Tag: 4.17.0-rc1~75 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3ac50e1d020e7ab2c759ca87aff51a57eb3c14f2;p=thirdparty%2Fshadow.git lib/run_part: Use correct data types Signed-off-by: Tobias Stoeckmann --- 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();