This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "".
The branch, master has been updated via 7c87b66edc84e8c713fefc68d46464660adaf71e (commit) from 6886a2ca3d3dd1157302ddee424c36f632903bd0 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit 7c87b66edc84e8c713fefc68d46464660adaf71e Author: Seungha Son linuxias@gmail.com Date: Thu Aug 2 00:22:40 2018 +0900
test: odp_pool_per: fix printf string format
Signed-off-by: Seungha Son linuxias@gmail.com Reviewed-by: Bill Fischofer bill.fischofer@linaro.org Reviewed-by: Bogdan Pricope bogdan.pricope@linaro.org Signed-off-by: Maxim Uvarov maxim.uvarov@linaro.org
diff --git a/test/performance/odp_pool_perf.c b/test/performance/odp_pool_perf.c index 4a77f327..d771e53e 100644 --- a/test/performance/odp_pool_perf.c +++ b/test/performance/odp_pool_perf.c @@ -128,7 +128,7 @@ static int set_num_cpu(test_global_t *global) ret = odp_cpumask_default_worker(&global->cpumask, num_cpu);
if (num_cpu && ret != num_cpu) { - printf("Error: Too many workers. Max supported %i\n.", ret); + printf("Error: Too many workers. Max supported %i.\n", ret); return -1; }
-----------------------------------------------------------------------
Summary of changes: test/performance/odp_pool_perf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive