# HG changeset patch # User Christian Brabandt # Date 1459023306 -3600 # Node ID a35b596cd7ac5868e8e1a00308f476cafe04b4b5 # Parent 1e0c9b48919cdfc4775e1985b52931db174f9757 commit https://github.com/vim/vim/commit/e1581307d281ceb35726e1b4ca30ef773a2ef23e Author: Bram Moolenaar Date: Sat Mar 26 21:04:48 2016 +0100 patch 7.4.1659 Problem: Compiler warning for argument type. (Manuel Ortega) Solution: Remove "&". diff --git a/src/os_unix.c b/src/os_unix.c --- a/src/os_unix.c +++ b/src/os_unix.c @@ -5467,7 +5467,7 @@ WaitForCharOrMouse(long msec, int *break ; #else - avail = RealWaitForChar(read_cmd_fd, msec, NULL, &break_loop); + avail = RealWaitForChar(read_cmd_fd, msec, NULL, break_loop); #endif return avail; } diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -749,6 +749,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1659, +/**/ 1658, /**/ 1657,