From 612b9f0e8a22ca69e6a903ec714ae3873ed85ad6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nils=20O=2E=20Sel=C3=A5sdal?= Date: Mon, 15 Jun 2026 20:29:01 +0200 Subject: [PATCH] Fix roundtomultiple --- src/base_core.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/base_core.h b/src/base_core.h index 06be6cc..31bde68 100644 --- a/src/base_core.h +++ b/src/base_core.h @@ -190,7 +190,7 @@ typedef unsigned __int128 U128; ({ \ __typeof__(x) _x = (x); \ __typeof__(y) _y = (y); \ - Assert(_y ! = 0); \ + Assert(_y != 0); \ __typeof__(x) _tmp = _x + _y - 1; \ _tmp - _tmp % _y; \ })