summaryrefslogtreecommitdiffstats
path: root/src/proto/term.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-05-05 14:29:06 +0200
committerBram Moolenaar <Bram@vim.org>2018-05-05 14:29:06 +0200
commit9894e394b230723abefc05a1c9a336b05a63088b (patch)
tree9ccb3287014a974ae857cc0bbe31531a3b99af74 /src/proto/term.pro
parentc136af29c0b1939076fbae7d36afd90dce740315 (diff)
patch 8.0.1791: using uint8_t does not work everywherev8.0.1791
Problem: Using uint8_t does not work everywhere. Solution: Use char_u instead.
Diffstat (limited to 'src/proto/term.pro')
-rw-r--r--src/proto/term.pro2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/term.pro b/src/proto/term.pro
index 333df92d6a..7eafdeffa9 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 : */