raster pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=9fd36d7037982a5148f70030003fedba72594796
commit 9fd36d7037982a5148f70030003fedba72594796 Author: Carsten Haitzler (Rasterman) <[email protected]> Date: Wed Nov 7 09:48:43 2018 +0000 efl check - fix uniit var warning by setting to 0 to start --- src/tests/efl_check.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/efl_check.h b/src/tests/efl_check.h index 29c9aeeb01..81fa1844e8 100644 --- a/src/tests/efl_check.h +++ b/src/tests/efl_check.h @@ -289,7 +289,7 @@ _efl_suite_build_and_run(int argc, const char **argv, const char *suite_name, co int can_fork = 0; Eina_Bool timeout_reached = EINA_FALSE; #ifdef ENABLE_TIMING_INFO - double tstart, tcstart; + double tstart = 0.0, tcstart = 0.0; int timing = _timing_enabled(); if (timing) --
