mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
patch 7.4.1210
Problem: Using old style function declarations. Solution: Change to new style function declarations. (script by Hirohito Higashi)
This commit is contained in:
@@ -31,7 +31,7 @@ static void test_mf_hash(void);
|
||||
* Test mf_hash_*() functions.
|
||||
*/
|
||||
static void
|
||||
test_mf_hash()
|
||||
test_mf_hash(void)
|
||||
{
|
||||
mf_hashtab_T ht;
|
||||
mf_hashitem_T *item;
|
||||
@@ -138,7 +138,7 @@ test_mf_hash()
|
||||
}
|
||||
|
||||
int
|
||||
main()
|
||||
main(void)
|
||||
{
|
||||
test_mf_hash();
|
||||
return 0;
|
||||
|
Reference in New Issue
Block a user