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 d96981e81ecbfc54ac8832d3ed2c32f50eaaf9a1 (commit) from 7cd13f48c935a88d56fd7d393fea6f02e5b0365a (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 d96981e81ecbfc54ac8832d3ed2c32f50eaaf9a1 Author: Maxim Uvarov maxim.uvarov@linaro.org Date: Mon Sep 5 22:04:51 2016 +0300
example: l3fwd: fix clang build
Signed-off-by: Maxim Uvarov maxim.uvarov@linaro.org Reviewed-and-tested-by: Bill Fischofer bill.fischofer@linaro.org
diff --git a/example/l3fwd/odp_l3fwd_db.c b/example/l3fwd/odp_l3fwd_db.c index 4731237..082b2c2 100644 --- a/example/l3fwd/odp_l3fwd_db.c +++ b/example/l3fwd/odp_l3fwd_db.c @@ -209,7 +209,7 @@ static void create_fwd_hash_cache(void) }
size = sizeof(flow_bucket_t) * bucket_count; - flows = (flow_entry_t *)((char *)bucket + size); + flows = (flow_entry_t *)(void *)((char *)bucket + size);
fwd_lookup_cache.bucket = bucket; fwd_lookup_cache.bkt_cnt = bucket_count;
-----------------------------------------------------------------------
Summary of changes: example/l3fwd/odp_l3fwd_db.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive