From: Emilia Kasper Date: Tue, 28 Jun 2016 11:28:57 +0000 (+0200) Subject: base64 macro: parenthesize for clarity X-Git-Tag: OpenSSL_1_1_0-pre6~319 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2cdce3e32f0f70470d676352410557b626bc9d01;p=openssl base64 macro: parenthesize for clarity Reviewed-by: Richard Levitte --- diff --git a/crypto/evp/encode.c b/crypto/evp/encode.c index e026a8f0ca..d140da67cc 100644 --- a/crypto/evp/encode.c +++ b/crypto/evp/encode.c @@ -55,7 +55,7 @@ abcdefghijklmnopqrstuvwxyz0123456789+/"; #define B64_WS 0xE0 #define B64_ERROR 0xFF #define B64_NOT_BASE64(a) (((a)|0x13) == 0xF3) -#define B64_BASE64(a) !B64_NOT_BASE64(a) +#define B64_BASE64(a) (!B64_NOT_BASE64(a)) static const unsigned char data_ascii2bin[128] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,