From 4fd83334b330be69ff98a655389697b4ac9cc1c8 Mon Sep 17 00:00:00 2001 From: Gaurav Aggarwal Date: Tue, 17 Oct 2023 15:48:57 +0000 Subject: [PATCH] Fix formatting Signed-off-by: Gaurav Aggarwal --- portable/Common/mpu_wrappers_v2.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/portable/Common/mpu_wrappers_v2.c b/portable/Common/mpu_wrappers_v2.c index 76863793b7b..30efa077338 100644 --- a/portable/Common/mpu_wrappers_v2.c +++ b/portable/Common/mpu_wrappers_v2.c @@ -115,12 +115,12 @@ /** * @brief Max value that fits in a size_t type. */ - #define mpuSIZE_MAX ( ~( ( size_t ) 0 ) ) + #define mpuSIZE_MAX ( ~( ( size_t ) 0 ) ) /** * @brief Check if multiplying a and b will result in overflow. */ - #define mpuMULTIPLY_WILL_OVERFLOW( a, b ) ( ( ( a ) > 0 ) && ( ( b ) > ( mpuSIZE_MAX / ( a ) ) ) ) + #define mpuMULTIPLY_WILL_OVERFLOW( a, b ) ( ( ( a ) > 0 ) && ( ( b ) > ( mpuSIZE_MAX / ( a ) ) ) ) /** * @brief Get the index of a free slot in the kernel object pool.