summaryrefslogtreecommitdiff
path: root/src/libvterm
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-05-27 21:22:14 +0200
committerBram Moolenaar <Bram@vim.org>2020-05-27 21:22:14 +0200
commitf4b68e9056f8ddb64c3d7141df138fe099575abf (patch)
treeef617d01df43ccc6fdac6db2aa77c45b21ece09f /src/libvterm
parent80a20df86a1ceefa3506cc578ba0ba35da979e38 (diff)
downloadvim-git-f4b68e9056f8ddb64c3d7141df138fe099575abf.tar.gz
patch 8.2.0831: compiler warnings for integer sizesv8.2.0831
Problem: Compiler warnings for integer sizes. Solution: Add type casts. (Mike Williams)
Diffstat (limited to 'src/libvterm')
-rw-r--r--src/libvterm/src/pen.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libvterm/src/pen.c b/src/libvterm/src/pen.c
index d3738b919..173f64f68 100644
--- a/src/libvterm/src/pen.c
+++ b/src/libvterm/src/pen.c
@@ -47,7 +47,7 @@ static void lookup_default_colour_ansi(long idx, VTermColor *col)
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 VTermState *state, int palette, const long args[]
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;