(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 140a9d9..0577e5d 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)