lib/run_part: Use correct data types

Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org>
This commit is contained in:
Tobias Stoeckmann
2024-09-13 21:49:08 +02:00
committed by Iker Pedrosa
parent 81078c57fb
commit 3ac50e1d02
+2 -2
View File
@@ -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();