summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1999-03-27 14:32:06 +0000
committerJim Meyering <jim@meyering.net>1999-03-27 14:32:06 +0000
commit9d044f6b96366c2761f457307cb51814e41024f0 (patch)
treeee5421eb79722e0f7b42f5023f1f33d33bff5fee
parent713d9932c3073478ffb686d6e4c41745abb152c9 (diff)
downloadcoreutils-9d044f6b96366c2761f457307cb51814e41024f0.tar.xz
(strip): Use pid_t, not int.
-rw-r--r--src/install.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/install.c b/src/install.c
index 140a9d966..0577e5d18 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)