]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(strip): Use pid_t, not int.
authorJim Meyering <jim@meyering.net>
Sat, 27 Mar 1999 14:32:06 +0000 (14:32 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 27 Mar 1999 14:32:06 +0000 (14:32 +0000)
src/install.c

index 140a9d966a1ae1232b566d7fcf51b5cfb5c9e58e..0577e5d181928fc46714b2574ab0486098228fd1 100644 (file)
@@ -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)