From: Jim Meyering Date: Sat, 27 Mar 1999 14:32:06 +0000 (+0000) Subject: (strip): Use pid_t, not int. X-Git-Tag: FILEUTILS-4_0e~79 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9d044f6b96366c2761f457307cb51814e41024f0;p=platform%2Fupstream%2Fcoreutils.git (strip): Use pid_t, not int. --- 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)