diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-08-22 23:04:33 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-08-22 23:04:33 +0200 |
commit | 1b58cdd160c2e0ada0f638679a2aa27e4665fc48 (patch) | |
tree | 5a88e5a7aec9e04bc428c6a9e468cb2fc7ae2edb /src/proto/gui_w32.pro | |
parent | 17f1347b867cbcc0ce380bf9a2466b4c31896f04 (diff) | |
download | vim-git-1b58cdd160c2e0ada0f638679a2aa27e4665fc48.tar.gz |
patch 7.4.2243v7.4.2243
Problem: Warning for assigning negative value to unsigned. (Danek Duvall)
Solution: Make cterm_normal_fg_gui_color and _bg_ guicolor_T, cast to long_u
only when an unsigned is needed.
Diffstat (limited to 'src/proto/gui_w32.pro')
-rw-r--r-- | src/proto/gui_w32.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/gui_w32.pro b/src/proto/gui_w32.pro index 20a92b974..2eccf747f 100644 --- a/src/proto/gui_w32.pro +++ b/src/proto/gui_w32.pro @@ -35,7 +35,7 @@ void gui_mch_enable_menu(int flag); void gui_mch_set_menu_pos(int x, int y, int w, int h); void gui_mch_menu_hidden(vimmenu_T *menu, int hidden); void gui_mch_draw_menubar(void); -long_u gui_mch_get_rgb(guicolor_T pixel); +guicolor_T gui_mch_get_rgb(guicolor_T pixel); void gui_mch_activate_window(void); void gui_mch_show_toolbar(int showit); void gui_mch_show_tabline(int showit); |