diff options
author | Jim Meyering <jim@meyering.net> | 1999-03-27 14:32:06 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1999-03-27 14:32:06 +0000 |
commit | 9d044f6b96366c2761f457307cb51814e41024f0 (patch) | |
tree | ee5421eb79722e0f7b42f5023f1f33d33bff5fee /src | |
parent | 713d9932c3073478ffb686d6e4c41745abb152c9 (diff) | |
download | coreutils-9d044f6b96366c2761f457307cb51814e41024f0.tar.xz |
(strip): Use pid_t, not int.
Diffstat (limited to 'src')
-rw-r--r-- | src/install.c | 3 |
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) |