From 0525f4ba9b2aac57701792c1bfd86d3ffdc89667 Mon Sep 17 00:00:00 2001 From: kreats Date: Thu, 31 Mar 2016 21:48:22 -0400 Subject: [PATCH] Update I_Action.h redundant parentheses. --- iocore/eventsystem/I_Action.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iocore/eventsystem/I_Action.h b/iocore/eventsystem/I_Action.h index ca3c5af3ecf..7bbd9943489 100644 --- a/iocore/eventsystem/I_Action.h +++ b/iocore/eventsystem/I_Action.h @@ -206,7 +206,7 @@ class Action #define MAKE_ACTION_RESULT(_x) (Action *)(((uintptr_t)((_x << 1) + 1))) #define ACTION_RESULT(_x) \ - (int)((((uintptr_t)_x)&1)!=0?(((uintptr_t)>>1):(uintptr_t)0)) + (int)( (((uintptr_t)_x)&1)!=0 ? ((uintptr_t)>>1) : (uintptr_t)0 ) #define IS_ACTION_RESULT(_x) ((((uintptr_t)_x) & 1) != 0)