From 9f1188152f06e925e1272a9588fb9b95d8344a75 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 8 Sep 2011 23:24:14 +0200 Subject: updated for version 7.3.303 Problem: Compilation error. Solution: Correct return type from int to pid_t. (Danek Duvall) --- src/os_unix.c | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/os_unix.c b/src/os_unix.c index 8dcf8c7d0..018c49f98 100644 --- 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__) diff --git a/src/version.c b/src/version.c index d2d0d2c4a..a162e234f 100644 --- a/src/version.c +++ b/src/version.c @@ -709,6 +709,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 303, /**/ 302, /**/ -- cgit v1.2.1