Skip to content

Commit 66cd19f

Browse files
committed
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)
1 parent 223896d commit 66cd19f

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/terminal.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -968,7 +968,7 @@ terminal_loop(void)
968968
/* We don't know if the job can handle CTRL-C itself or not, this
969969
* may kill the shell instead of killing the command running in the
970970
* shell. */
971-
mch_stop_job(curbuf->b_term->tl_job, "quit")
971+
mch_stop_job(curbuf->b_term->tl_job, (char_u *)"quit")
972972
#endif
973973

974974
if (c == (termkey == 0 ? Ctrl_W : termkey))

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -769,6 +769,8 @@ static char *(features[]) =
769769

770770
static int included_patches[] =
771771
{ /* Add new patch number below this line */
772+
/**/
773+
843,
772774
/**/
773775
842,
774776
/**/

0 commit comments

Comments
 (0)