diff src/proto/term.pro @ 13839:ca8953d36264 v8.0.1791

patch 8.0.1791: using uint8_t does not work everywhere commit https://github.com/vim/vim/commit/9894e394b230723abefc05a1c9a336b05a63088b Author: Bram Moolenaar <Bram@vim.org> Date: Sat May 5 14:29:06 2018 +0200 patch 8.0.1791: using uint8_t does not work everywhere Problem: Using uint8_t does not work everywhere. Solution: Use char_u instead.
author Christian Brabandt <cb@256bit.org>
date Sat, 05 May 2018 14:30:06 +0200
parents d0d8125ba692
children 65b222617852
line wrap: on
line diff
--- a/src/proto/term.pro
+++ b/src/proto/term.pro
@@ -76,5 +76,5 @@ void update_tcap(int attr);
 void swap_tcap(void);
 guicolor_T gui_get_color_cmn(char_u *name);
 guicolor_T gui_get_rgb_color_cmn(int r, int g, int b);
-void cterm_color2rgb(int nr, uint8_t *r, uint8_t *g, uint8_t *b, uint8_t *ansi_idx);
+void cterm_color2rgb(int nr, char_u *r, char_u *g, char_u *b, char_u *ansi_idx);
 /* vim: set ft=c : */