diff --git a/src/bin/evisum_watcher.c b/src/bin/evisum_watcher.c index 621f3ce..e4c2237 100644 --- a/src/bin/evisum_watcher.c +++ b/src/bin/evisum_watcher.c @@ -8,8 +8,8 @@ static Eina_List *sensors = NULL; static Eina_List *network_interfaces = NULL; static Eina_List *cores = NULL; -int -main(int argc, char **argv) +static int +test(void) { Eina_List *l; Cpu_Core *core; @@ -82,3 +82,8 @@ main(int argc, char **argv) return 0; } + +int main(int argc, char **argv) +{ + return test(); +}