stefan pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=e683a53f926dbfefb11a35f277eae8ca0176f2fd

commit e683a53f926dbfefb11a35f277eae8ca0176f2fd
Author: Stefan Schmidt <ste...@osg.samsung.com>
Date:   Thu Nov 26 17:20:14 2015 +0100

    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.
---
 src/bin/edje/edje_decc.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/bin/edje/edje_decc.c b/src/bin/edje/edje_decc.c
index 5eeb7ef..2f5fe96 100644
--- a/src/bin/edje/edje_decc.c
+++ b/src/bin/edje/edje_decc.c
@@ -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

-- 


Reply via email to