raster pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=e0f40e7a831e76505e19d414791120f65cb39e29
commit e0f40e7a831e76505e19d414791120f65cb39e29 Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com> Date: Fri Apr 2 17:17:32 2021 +0100 mixer - remove debug printfs --- src/modules/mixer/e_mod_main.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/modules/mixer/e_mod_main.c b/src/modules/mixer/e_mod_main.c index 506c1b5d1..1d473a988 100644 --- a/src/modules/mixer/e_mod_main.c +++ b/src/modules/mixer/e_mod_main.c @@ -140,14 +140,12 @@ _cb_emix_monitor_update(void *data) md->mon_skips++; if (md->mon_skips > 5) { - printf(" too many skips\n"); elm_progressbar_value_set(md->vu, 0.0); md->animator = NULL; return EINA_FALSE; } return EINA_TRUE; } - printf(" vu %1.2f\n", md->samp_max); elm_progressbar_value_set(md->vu, md->samp_max); md->mon_update = 0; md->samp_max = 0; --