commit | 9f1188152f06e925e1272a9588fb9b95d8344a75 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Thu Sep 08 23:24:14 2011 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Thu Sep 08 23:24:14 2011 +0200 |
tree | ef151a0fed4c5585f8cdbbcb12b14e2018c77175 | |
parent | 868272f58e765e98d1f3f7e870434eea27eef6ee [diff] [blame] |
updated for version 7.3.303 Problem: Compilation error. Solution: Correct return type from int to pid_t. (Danek Duvall)
diff --git a/src/os_unix.c b/src/os_unix.c index 8dcf8c7..018c49f 100644 --- a/src/os_unix.c +++ b/src/os_unix.c
@@ -159,7 +159,7 @@ #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__)