From 415b70dc7b029b3d399afb092effb6e2abb6a02a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kacper=20Michaj=C5=82ow?= Date: Fri, 7 Mar 2025 21:53:54 +0100 Subject: [PATCH] misc/mp_assert: important fix forgotten before merge --- misc/mp_assert.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/mp_assert.h b/misc/mp_assert.h index b5cf605997..769c567e93 100644 --- a/misc/mp_assert.h +++ b/misc/mp_assert.h @@ -52,6 +52,6 @@ abort(); \ } while (0) -#define mp_assert(expr) do { (void)sizeof(expr);} while (0) +#define mp_assert(expr) do { (void)sizeof(expr); } while (0) #endif