edje_decc: use void to force empty function parameters

We have to use void in a function declaration if we want no function
parameters. Using just empty parenthesis means the function takes an
unspecified number of parameters.

We had it correct for most declarations and this series fixes it for
the rest.
This commit is contained in:
Stefan Schmidt 2015-11-26 17:20:14 +01:00
parent 507baf4891
commit e683a53f92
1 changed files with 2 additions and 2 deletions

View File

@ -35,8 +35,8 @@ int new_dir = 1;
int decomp(void);
void output(void);
static int compiler_cmd_is_sane();
static int root_filename_is_sane();
static int compiler_cmd_is_sane(void);
static int root_filename_is_sane(void);
static void