Fix roundtomultiple

This commit is contained in:
Nils O. Selåsdal
2026-06-15 20:29:01 +02:00
parent 2fed5cbe1b
commit 612b9f0e8a
+1 -1
View File
@@ -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; \
})