summaryrefslogtreecommitdiffstats
path: root/src/proto
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-07-26 22:51:28 +0200
committerBram Moolenaar <Bram@vim.org>2010-07-26 22:51:28 +0200
commit5e109c4ab009a5b4c3bb769d8b2d22f9e4ee2c87 (patch)
tree3bf319d351e36d9576d149428e34663739e8a4ae /src/proto
parent0ed0eea20689b3bdafe296f4e132679d3977b943 (diff)
Fix compiler warnings on 64 bit systems.
Diffstat (limited to 'src/proto')
-rw-r--r--src/proto/gui.pro2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/gui.pro b/src/proto/gui.pro
index fa5ce89441..29f87ef65d 100644
--- a/src/proto/gui.pro
+++ b/src/proto/gui.pro
@@ -46,7 +46,7 @@ void gui_drag_scrollbar __ARGS((scrollbar_T *sb, long value, int still_dragging)
void gui_may_update_scrollbars __ARGS((void));
void gui_update_scrollbars __ARGS((int force));
int gui_do_scroll __ARGS((void));
-int gui_do_horiz_scroll __ARGS((colnr_T leftcol, int compute_longest_lnum));
+int gui_do_horiz_scroll __ARGS((long_u leftcol, int compute_longest_lnum));
void gui_check_colors __ARGS((void));
guicolor_T gui_get_color __ARGS((char_u *name));
int gui_get_lightness __ARGS((guicolor_T pixel));