diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-05-05 14:29:06 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-05-05 14:29:06 +0200 |
commit | 9894e394b230723abefc05a1c9a336b05a63088b (patch) | |
tree | 9ccb3287014a974ae857cc0bbe31531a3b99af74 /src/proto | |
parent | c136af29c0b1939076fbae7d36afd90dce740315 (diff) | |
download | vim-git-9894e394b230723abefc05a1c9a336b05a63088b.tar.gz |
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')
-rw-r--r-- | src/proto/term.pro | 2 |
1 files changed, 1 insertions, 1 deletions
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 : */ |