From 9d044f6b96366c2761f457307cb51814e41024f0 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sat, 27 Mar 1999 14:32:06 +0000 Subject: [PATCH] (strip): Use pid_t, not int. --- src/install.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/install.c b/src/install.c index 140a9d9..0577e5d 100644 --- a/src/install.c +++ b/src/install.c @@ -558,7 +558,8 @@ change_timestamps (const char *from, const char *to) static void strip (const char *path) { - int pid, status; + int status; + pid_t pid; pid = fork (); switch (pid) -- 2.7.4