diff src/gui_x11.c @ 7825:7898da204b98 v7.4.1209

commit https://github.com/vim/vim/commit/02fdaeaa697fb5af4ba7fee6e209b3c2c825bb4f Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jan 30 18:13:55 2016 +0100 patch 7.4.1209 Problem: Can't build with Athena. Solution: Fix function declarations.
author Christian Brabandt <cb@256bit.org>
date Sat, 30 Jan 2016 18:15:04 +0100
parents bcef391c101c
children 226ed297307f
line wrap: on
line diff
--- a/src/gui_x11.c
+++ b/src/gui_x11.c
@@ -1761,7 +1761,7 @@ gui_mch_exit(int rc UNUSED)
  * Get the position of the top left corner of the window.
  */
     int
-gui_mch_get_winpos(int *x, *y)
+gui_mch_get_winpos(int *x, int *y)
 {
     Dimension	xpos, ypos;
 
@@ -1779,7 +1779,7 @@ gui_mch_get_winpos(int *x, *y)
  * coordinates.
  */
     void
-gui_mch_set_winpos(int x, y)
+gui_mch_set_winpos(int x, int y)
 {
     XtVaSetValues(vimShell,
 	XtNx,	x,
@@ -3181,7 +3181,7 @@ static long_u		blink_offtime = 250;
 static XtIntervalId	blink_timer = (XtIntervalId)0;
 
     void
-gui_mch_set_blinking(long waittime, on, off)
+gui_mch_set_blinking(long waittime, long on, long off)
 {
     blink_waittime = waittime;
     blink_ontime = on;