From: Bram Moolenaar Date: Sat, 26 Mar 2016 20:04:48 +0000 (+0100) Subject: patch 7.4.1659 X-Git-Tag: v7.4.1659 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e1581307d281ceb35726e1b4ca30ef773a2ef23e;p=thirdparty%2Fvim.git 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 index 77c96dc80c..74ffe93001 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -5467,7 +5467,7 @@ WaitForCharOrMouse(long msec, int *break_loop) ; #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 index 62e66ab1f6..dccdb902d1 100644 --- a/src/version.c +++ b/src/version.c @@ -748,6 +748,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1659, /**/ 1658, /**/