commit | 6f8d2ac6f1f8a4b971a4c9b27f9250288198f3bb | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Wed Jul 25 19:49:45 2018 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Wed Jul 25 19:49:45 2018 +0200 |
tree | 025fa293ef53b277e566362cebb53ecded35c659 | |
parent | b6c8cd8dc3fbbe9da1180ce1b75f2252df2c1318 [diff] [blame] |
patch 8.1.0210: still a few K&R function declarations Problem: Still a few K&R function declarations. Solution: Use ANSI function declarations (Hirohito Higashi)
diff --git a/src/list.c b/src/list.c index 1dfaa21..9a348a8 100644 --- a/src/list.c +++ b/src/list.c
@@ -479,9 +479,7 @@ * 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();