misc/mp_assert: important fix forgotten before merge

This commit is contained in:
Kacper Michajłow
2025-03-07 21:53:54 +01:00
parent 91f80b5948
commit 415b70dc7b

View File

@@ -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