diff --git a/library/common.h b/library/common.h index 724c44ed8c..89f3b1ffb0 100644 --- a/library/common.h +++ b/library/common.h @@ -185,8 +185,8 @@ inline void mbedtls_xor(unsigned char *r, const unsigned char *a, const unsigned /* Define compiler branch hints */ #if defined(__has_builtin) #if __has_builtin(__builtin_expect) -#define MBEDTLS_LIKELY(x) __builtin_expect((x),1) -#define MBEDTLS_UNLIKELY(x) __builtin_expect((x),0) +#define MBEDTLS_LIKELY(x) __builtin_expect((x), 1) +#define MBEDTLS_UNLIKELY(x) __builtin_expect((x), 0) #endif #endif #if !defined(MBEDTLS_LIKELY)