first build in a long while, clear up a warning

..\src\options.c(4005) : warning C4113: 'int (__cdecl *)()' differs in parameter lists from 'int (__cdecl *)(void)'
This commit is contained in:
nhmall
2017-10-04 12:21:05 -04:00
parent 8a45da0e8d
commit 429288cac9
2 changed files with 4 additions and 4 deletions

View File

@@ -2334,7 +2334,7 @@ int fld;
}
int
count_status_hilites()
count_status_hilites(VOID_ARGS)
{
int count;
status_hilite_linestr_gather();

View File

@@ -1593,7 +1593,7 @@ int hide_mask;
}
STATIC_OVL int
msgtype_count()
msgtype_count(VOID_ARGS)
{
int c = 0;
struct plinemsg_type *tmp = plinemsg_types;
@@ -1791,7 +1791,7 @@ int idx; /* 0 .. */
}
STATIC_OVL int
count_menucolors()
count_menucolors(VOID_ARGS)
{
int count = 0;
struct menucoloring *tmp = menu_colorings;
@@ -3975,7 +3975,7 @@ int nset;
}
int
count_apes()
count_apes(VOID_ARGS)
{
return count_ape_maps((int *) 0, (int *) 0);
}