From: Pavan Deolasee Date: Wed, 6 Jul 2016 10:20:21 +0000 (+0530) Subject: Add a missing parenthesis, lack of which might throw surprises X-Git-Tag: XL9_5_R1_2~34 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=f4d34784893cecb1554e20bf07a94a39a17c571d;p=postgres-xl.git Add a missing parenthesis, lack of which might throw surprises --- diff --git a/src/include/gtm/gtm_c.h b/src/include/gtm/gtm_c.h index 2efe7e20c9..8918cf2b24 100644 --- a/src/include/gtm/gtm_c.h +++ b/src/include/gtm/gtm_c.h @@ -146,7 +146,7 @@ typedef enum GTM_PortLastCall */ #define InitialGXIDValue_Default ((GlobalTransactionId) 10000) -#define GlobalTransactionIdIsValid(gxid) ((GlobalTransactionId) (gxid)) != InvalidGlobalTransactionId +#define GlobalTransactionIdIsValid(gxid) (((GlobalTransactionId) (gxid)) != InvalidGlobalTransactionId) #define _(x) gettext(x)