# HG changeset patch # User Bram Moolenaar # Date 1590607804 -7200 # Node ID eedaa9a30ab47e3598b8c339e401b03eb5607b2b # Parent 296fd130e061fa35dbc2b2c2ae738db67ac2048e patch 8.2.0831: compiler warnings for integer sizes Commit: https://github.com/vim/vim/commit/f4b68e9056f8ddb64c3d7141df138fe099575abf Author: Bram Moolenaar Date: Wed May 27 21:22:14 2020 +0200 patch 8.2.0831: compiler warnings for integer sizes Problem: Compiler warnings for integer sizes. Solution: Add type casts. (Mike Williams) diff --git a/src/libvterm/src/pen.c b/src/libvterm/src/pen.c --- a/src/libvterm/src/pen.c +++ b/src/libvterm/src/pen.c @@ -47,7 +47,7 @@ static void lookup_default_colour_ansi(l vterm_color_rgb( col, ansi_colors[idx].red, ansi_colors[idx].green, ansi_colors[idx].blue); - col->index = idx; + col->index = (uint8_t)idx; col->type = VTERM_COLOR_INDEXED; } @@ -96,7 +96,7 @@ static int lookup_colour(const VTermStat if(argcount < 3) return argcount; - vterm_color_rgb(col, CSI_ARG(args[0]), CSI_ARG(args[1]), CSI_ARG(args[2])); + vterm_color_rgb(col, (uint8_t)CSI_ARG(args[0]), (uint8_t)CSI_ARG(args[1]), (uint8_t)CSI_ARG(args[2])); return 3; diff --git a/src/terminal.c b/src/terminal.c --- a/src/terminal.c +++ b/src/terminal.c @@ -4230,7 +4230,7 @@ parse_osc(int command, VTermStringFragme return 1; } mch_memmove((char *)gap->ga_data + gap->ga_len, frag.str, frag.len); - gap->ga_len += frag.len; + gap->ga_len += (int)frag.len; if (!frag.final) return 1; diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -747,6 +747,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 831, +/**/ 830, /**/ 829,