# HG changeset patch # User Bram Moolenaar # Date 1315517054 -7200 # Node ID d832d642f520d426f111b35102450617922547d3 # Parent 5adce76682b8248d37fc8c298f448fb079c57cb2 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 --- 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 --- a/src/version.c +++ b/src/version.c @@ -710,6 +710,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 303, +/**/ 302, /**/ 301,