From ff6a439cd24e239abd97107ecedf12dca71e59a5 Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Thu, 25 Oct 2012 13:33:43 -0700 Subject: [PATCH] altos: Wrap ao_container_of value in parens Keeps the cast from being separated from the value when used in expressions. Signed-off-by: Keith Packard --- src/core/ao_list.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/ao_list.h b/src/core/ao_list.h index 23cf1841..8a6fa4d9 100644 --- a/src/core/ao_list.h +++ b/src/core/ao_list.h @@ -137,7 +137,7 @@ ao_list_is_empty(struct ao_list *head) * @return A pointer to the data struct containing the list head. */ #define ao_container_of(ptr, type, member) \ - (type *)((char *)(ptr) - offsetof(type, member)) + ((type *)((char *)(ptr) - offsetof(type, member))) /** * Alias of ao_container_of -- 2.30.2