commit | 7454a06e2642d2b37afad1c5e71cec68081ca4ff | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sat Jan 30 15:14:10 2016 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Sat Jan 30 15:14:10 2016 +0100 |
tree | 8b38e652321d9591a2f57e44b9bdc1f590837f7b | |
parent | 305598b71261265994e2846b4ff4a4d8efade280 [diff] [blame] |
patch 7.4.1205 Problem: Using old style function declarations. Solution: Change to new style function declarations. (script by Hirohito Higashi)
diff --git a/src/channel.c b/src/channel.c index 46c45b6..2a75342 100644 --- a/src/channel.c +++ b/src/channel.c
@@ -745,7 +745,7 @@ * Return a unique ID to be used in a message. */ int -channel_get_id() +channel_get_id(void) { static int next_id = 1;