# HG changeset patch # User Christian Brabandt # Date 1501708504 -7200 # Node ID 728805b1523efdacf428571cb2af254536c050d1 # Parent 9fa7cd71d9c82bed6c740c2497885a50cee88d95 patch 8.0.0843: MS-Windows: compiler warning for signed/unsigned commit https://github.com/vim/vim/commit/66cd19fef1c5e86d798db164cc29f8ec2793411d Author: Bram Moolenaar Date: Wed Aug 2 23:13:27 2017 +0200 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 https://github.com/vim/vim/issues/1912) diff --git a/src/terminal.c b/src/terminal.c --- a/src/terminal.c +++ b/src/terminal.c @@ -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)) diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -770,6 +770,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 843, +/**/ 842, /**/ 841,