1
0
forked from aniani/vim

patch 7.4.1924

Problem:    Missing "void" for functions without argument.
Solution:   Add "void". (Hirohito Higashi)
This commit is contained in:
Bram Moolenaar
2016-06-12 21:18:43 +02:00
parent ae3150ec8d
commit cf08946349
6 changed files with 13 additions and 11 deletions

View File

@@ -5819,14 +5819,14 @@ static yankreg_T *y_read_regs = NULL;
* Prepare for reading viminfo registers when writing viminfo later.
*/
void
prepare_viminfo_registers()
prepare_viminfo_registers(void)
{
y_read_regs = (yankreg_T *)alloc_clear(NUM_REGISTERS
* (int)sizeof(yankreg_T));
}
void
finish_viminfo_registers()
finish_viminfo_registers(void)
{
int i;
int j;