diff --git a/lib/run_part.c b/lib/run_part.c index 2514e15f..5ef05d98 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();