Fix roundtomultiple
This commit is contained in:
+1
-1
@@ -190,7 +190,7 @@ typedef unsigned __int128 U128;
|
|||||||
({ \
|
({ \
|
||||||
__typeof__(x) _x = (x); \
|
__typeof__(x) _x = (x); \
|
||||||
__typeof__(y) _y = (y); \
|
__typeof__(y) _y = (y); \
|
||||||
Assert(_y ! = 0); \
|
Assert(_y != 0); \
|
||||||
__typeof__(x) _tmp = _x + _y - 1; \
|
__typeof__(x) _tmp = _x + _y - 1; \
|
||||||
_tmp - _tmp % _y; \
|
_tmp - _tmp % _y; \
|
||||||
})
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user