commit | fb97f28cc23c20721af3b122a8b9c510db0e14b2 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Tue Jul 09 17:42:46 2013 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Tue Jul 09 17:42:46 2013 +0200 |
tree | 3b09eb5014655208b8766e1f197c89cb33112bdb | |
parent | e032461eede2a80f184f1c08e22a76eaf18a480e [diff] [blame] |
updated for version 7.4a.009 Problem: Compiler warnings for function prototypes. Solution: Add "void". Move list_features() prototype. (Ken Takata)
diff --git a/src/if_py_both.h b/src/if_py_both.h index a9fe505..48b7be7 100644 --- a/src/if_py_both.h +++ b/src/if_py_both.h
@@ -2100,7 +2100,7 @@ } static list_T * -py_list_alloc() +py_list_alloc(void) { list_T *ret; @@ -5857,7 +5857,7 @@ return -1; static int -init_types() +init_types(void) { PYTYPE_READY(IterType); PYTYPE_READY(BufferType);