diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-01-30 20:31:25 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-01-30 20:31:25 +0100 |
commit | 055409764ca5f7978d4c399d2c440af0ce971c4f (patch) | |
tree | d3f9b0d26c4e371720910e462e2ec918e19d5792 /src/os_qnx.c | |
parent | c1ab67674aa0dfdcf9f0e9701ac248e3eb41b19c (diff) | |
download | vim-git-055409764ca5f7978d4c399d2c440af0ce971c4f.tar.gz |
patch 7.4.1213v7.4.1213
Problem: Using old style function declarations.
Solution: Change to new style function declarations. (script by Hirohito
Higashi)
Diffstat (limited to 'src/os_qnx.c')
-rw-r--r-- | src/os_qnx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/os_qnx.c b/src/os_qnx.c index a8f12fa87..a156c06a2 100644 --- a/src/os_qnx.c +++ b/src/os_qnx.c @@ -19,7 +19,7 @@ int is_photon_available; #endif -void qnx_init() +void qnx_init(void) { #if defined(FEAT_GUI_PHOTON) PhChannelParms_t parms; @@ -37,7 +37,7 @@ void qnx_init() #define CLIP_TYPE_TEXT "TEXT" /* Turn on the clipboard for a console vim when photon is running */ -void qnx_clip_init() +void qnx_clip_init(void) { if (is_photon_available == TRUE && !gui.in_use) clip_init(TRUE); |