summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-03-26 21:04:48 +0100
committerBram Moolenaar <Bram@vim.org>2016-03-26 21:04:48 +0100
commite1581307d281ceb35726e1b4ca30ef773a2ef23e (patch)
tree1c4a4078a847174ba16cdaeca667e5863516008e
parent1473551a4457d4920b235eeeb9f279e196ee7225 (diff)
downloadvim-git-7.4.1659.tar.gz
patch 7.4.1659v7.4.1659
Problem: Compiler warning for argument type. (Manuel Ortega) Solution: Remove "&".
-rw-r--r--src/os_unix.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/os_unix.c b/src/os_unix.c
index 77c96dc80..74ffe9300 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 62e66ab1f..dccdb902d 100644
--- 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,