diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-01-30 18:13:55 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-01-30 18:13:55 +0100 |
commit | 02fdaeaa697fb5af4ba7fee6e209b3c2c825bb4f (patch) | |
tree | 1a6c1a439d0fff8f37f4a814f180ca26059100c9 /src/gui_x11.c | |
parent | 68c2f638e65d914dc6e84eb7ce2624f08af525c0 (diff) | |
download | vim-git-02fdaeaa697fb5af4ba7fee6e209b3c2c825bb4f.tar.gz |
patch 7.4.1209v7.4.1209
Problem: Can't build with Athena.
Solution: Fix function declarations.
Diffstat (limited to 'src/gui_x11.c')
-rw-r--r-- | src/gui_x11.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui_x11.c b/src/gui_x11.c index af3c3a919..e6e6f614f 100644 --- 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; |