From 9894e394b230723abefc05a1c9a336b05a63088b Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 5 May 2018 14:29:06 +0200 Subject: patch 8.0.1791: using uint8_t does not work everywhere Problem: Using uint8_t does not work everywhere. Solution: Use char_u instead. --- src/proto/term.pro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/proto') diff --git a/src/proto/term.pro b/src/proto/term.pro index 333df92d6..7eafdeffa 100644 --- 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 : */ -- cgit v1.2.1