summaryrefslogtreecommitdiffstats
path: root/src/gui_at_fs.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-01-30 18:13:55 +0100
committerBram Moolenaar <Bram@vim.org>2016-01-30 18:13:55 +0100
commit02fdaeaa697fb5af4ba7fee6e209b3c2c825bb4f (patch)
tree1a6c1a439d0fff8f37f4a814f180ca26059100c9 /src/gui_at_fs.c
parent68c2f638e65d914dc6e84eb7ce2624f08af525c0 (diff)
patch 7.4.1209v7.4.1209
Problem: Can't build with Athena. Solution: Fix function declarations.
Diffstat (limited to 'src/gui_at_fs.c')
-rw-r--r--src/gui_at_fs.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/gui_at_fs.c b/src/gui_at_fs.c
index 3c0c992cf3..0606fba9b3 100644
--- a/src/gui_at_fs.c
+++ b/src/gui_at_fs.c
@@ -495,7 +495,7 @@ SFunselect(void)
static int SFcompareLogins(const void *p, const void *q);
static int
-SFcompareLogins(const void *p, *q)
+SFcompareLogins(const void *p, const void *q)
{
return strcmp(((SFLogin *)p)->name, ((SFLogin *)q)->name);
}
@@ -571,7 +571,7 @@ SFgetHomeDirs(void)
static int SFfindHomeDir(char *begin, char *end);
static int
-SFfindHomeDir(char *begin, *end)
+SFfindHomeDir(char *begin, char *end)
{
char save;
char *theRest;
@@ -2709,9 +2709,12 @@ vim_SelFile(
char *prompt,
char *init_path,
int (*show_entry)(),
- int x, y,
- guicolor_T fg, bg,
- guicolor_T scroll_fg, scroll_bg) /* The "Scrollbar" group colors */
+ int x,
+ int y,
+ guicolor_T fg,
+ guicolor_T bg,
+ guicolor_T scroll_fg,
+ guicolor_T scroll_bg) /* The "Scrollbar" group colors */
{
static int firstTime = 1;
XEvent event;