Enlightenment CVS committal Author : sebastid Project : misc Module : embrace
Dir : misc/embrace/src Modified Files: e_mod_main.c Log Message: Fix function prototype. =================================================================== RCS file: /cvsroot/enlightenment/misc/embrace/src/e_mod_main.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -3 -r1.3 -r1.4 --- e_mod_main.c 25 Aug 2005 21:02:59 -0000 1.3 +++ e_mod_main.c 3 Sep 2005 04:02:01 -0000 1.4 @@ -9,7 +9,7 @@ #include "embrace.h" /* module private routines */ -static Embrace *embrace_module_new (); +static Embrace *embrace_module_new (void); static void embrace_module_free (Embrace *embrace); static E_Menu *embrace_config_menu_new (void); @@ -46,7 +46,7 @@ return NULL; } /* actually init embrace */ - embrace = embrace_module_new (module); + embrace = embrace_module_new (); module->config_menu = embrace_config_menu_new (); return embrace; @@ -93,7 +93,7 @@ } /* module private routines */ -static Embrace *embrace_module_new () +static Embrace *embrace_module_new (void) { Embrace *embrace; ------------------------------------------------------- SF.Net email is Sponsored by the Better Software Conference & EXPO September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs