0
0
mirror of https://github.com/vim/vim.git synced 2025-07-26 11:04:33 -04:00

patch 8.0.0843: MS-Windows: compiler warning for signed/unsigned

Problem:    MS-Windows: compiler warning for signed/unsigned.
Solution:   Add type cast. (Yasuhiro Matsumoto, closes #1912)
This commit is contained in:
Bram Moolenaar 2017-08-02 23:13:27 +02:00
parent 223896d3e9
commit 66cd19fef1
2 changed files with 3 additions and 1 deletions

View File

@ -968,7 +968,7 @@ terminal_loop(void)
/* We don't know if the job can handle CTRL-C itself or not, this
* may kill the shell instead of killing the command running in the
* shell. */
mch_stop_job(curbuf->b_term->tl_job, "quit")
mch_stop_job(curbuf->b_term->tl_job, (char_u *)"quit")
#endif
if (c == (termkey == 0 ? Ctrl_W : termkey))

View File

@ -769,6 +769,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
843,
/**/
842,
/**/