diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-01-30 21:29:58 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-01-30 21:29:58 +0100 |
commit | b638a7be952544ceb03052c25b84224577a6494b (patch) | |
tree | 4a37ca954a03fba25f9e7a81b7f54cf23c1013cb /src/xpm_w32.c | |
parent | 764b23c8fd3369cb05ae9122abf3ca16fec539d7 (diff) | |
download | vim-git-b638a7be952544ceb03052c25b84224577a6494b.tar.gz |
patch 7.4.1215v7.4.1215
Problem: Using old style function declarations.
Solution: Change to new style function declarations. (script by Hirohito
Higashi)
Diffstat (limited to 'src/xpm_w32.c')
-rw-r--r-- | src/xpm_w32.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/xpm_w32.c b/src/xpm_w32.c index 945ab7d8d..cc296fc8b 100644 --- a/src/xpm_w32.c +++ b/src/xpm_w32.c @@ -28,10 +28,10 @@ * "hShape". */ int -LoadXpmImage(filename, hImage, hShape) - char *filename; - HBITMAP *hImage; - HBITMAP *hShape; +LoadXpmImage( + char *filename, + HBITMAP *hImage, + HBITMAP *hShape) { XImage *img; /* loaded image */ XImage *shp; /* shapeimage */ |