diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-07-25 19:49:45 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-07-25 19:49:45 +0200 |
commit | 6f8d2ac6f1f8a4b971a4c9b27f9250288198f3bb (patch) | |
tree | 025fa293ef53b277e566362cebb53ecded35c659 /src/list.c | |
parent | b6c8cd8dc3fbbe9da1180ce1b75f2252df2c1318 (diff) | |
download | vim-git-6f8d2ac6f1f8a4b971a4c9b27f9250288198f3bb.tar.gz |
patch 8.1.0210: still a few K&R function declarationsv8.1.0210
Problem: Still a few K&R function declarations.
Solution: Use ANSI function declarations (Hirohito Higashi)
Diffstat (limited to 'src/list.c')
-rw-r--r-- | src/list.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/list.c b/src/list.c index 1dfaa210e..9a348a8a6 100644 --- a/src/list.c +++ b/src/list.c @@ -479,9 +479,7 @@ list_append_dict(list_T *list, dict_T *dict) * Return FAIL when out of memory. */ int -list_append_list(list1, list2) - list_T *list1; - list_T *list2; +list_append_list(list_T *list1, list_T *list2) { listitem_T *li = listitem_alloc(); |