diff src/os_unix.c @ 3062:d832d642f520 v7.3.303

updated for version 7.3.303 Problem: Compilation error. Solution: Correct return type from int to pid_t. (Danek Duvall)
author Bram Moolenaar <bram@vim.org>
date Thu, 08 Sep 2011 23:24:14 +0200
parents c19c15a9e9bf
children 176bfa951339
line wrap: on
line diff
--- a/src/os_unix.c
+++ b/src/os_unix.c
@@ -159,7 +159,7 @@ typedef union wait waitstatus;
 #else
 typedef int waitstatus;
 #endif
-static int  wait4pid __ARGS((pid_t, waitstatus *));
+static pid_t wait4pid __ARGS((pid_t, waitstatus *));
 
 static int  WaitForChar __ARGS((long));
 #if defined(__BEOS__)