diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-03-26 21:04:48 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-03-26 21:04:48 +0100 |
commit | e1581307d281ceb35726e1b4ca30ef773a2ef23e (patch) | |
tree | 1c4a4078a847174ba16cdaeca667e5863516008e /src/os_unix.c | |
parent | 1473551a4457d4920b235eeeb9f279e196ee7225 (diff) | |
download | vim-e1581307d281ceb35726e1b4ca30ef773a2ef23e.zip |
patch 7.4.1659
Problem: Compiler warning for argument type. (Manuel Ortega)
Solution: Remove "&".
Diffstat (limited to 'src/os_unix.c')
-rw-r--r-- | src/os_unix.c | 2 |
1 files changed, 1 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; } |