From 6bd56e26c7c3c237916337c6272cade7fd837258 Mon Sep 17 00:00:00 2001 From: Hermet Park Date: Tue, 1 Sep 2020 20:40:18 +0900 Subject: [PATCH] test async: fix wrong time unit. --- test/testAsync.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/testAsync.cpp b/test/testAsync.cpp index 25e57ba6..7635e5df 100644 --- a/test/testAsync.cpp +++ b/test/testAsync.cpp @@ -93,7 +93,7 @@ void drawSwView(void* data, Eo* obj) t4 = ecore_time_get(); - printf("[%5d]: total[%fms] = clear[%fms], update[%fms], render[%fms]\n", ++cnt, t4 - t1, t2 - t1, t3 - t2, t4 - t3); + printf("[%5d]: total[%fs] = clear[%fs], update[%fs], render[%fs]\n", ++cnt, t4 - t1, t2 - t1, t3 - t2, t4 - t3); }