(svn r16373) -Codechange: use () instead of (void) for functions without parameters

This commit is contained in:
smatz
2009-05-21 22:43:25 +00:00
parent eded5a612c
commit 85043a1fb7
8 changed files with 17 additions and 17 deletions

View File

@@ -17,7 +17,7 @@ static const SaveLoad _group_desc[] = {
SLE_END()
};
static void Save_GRPS(void)
static void Save_GRPS()
{
Group *g;
@@ -28,7 +28,7 @@ static void Save_GRPS(void)
}
static void Load_GRPS(void)
static void Load_GRPS()
{
int index;