mirror of
https://github.com/odin-lang/Odin.git
synced 2026-09-16 16:14:24 -04:00
Missing paren.
This commit is contained in:
1 parent
9199c6df34
commit
c33d2ff96b
1 file changed
+1
-1
+1
-1
@@ -466,7 +466,7 @@ The specified alignment must be a power of 2.
|
||||
*/
|
||||
is_aligned :: proc "contextless" (x: rawptr, align: int) -> bool {
|
||||
p := uintptr(x)
|
||||
return (p & (uintptr(align) - 1) == 0
|
||||
return (p & (uintptr(align) - 1)) == 0
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
Reference in new issue
Block a user