head: sys: Increase operation size in macro

Signed-off-by: Ian Moffett <ian@mirocom.org>
This commit is contained in:
2026-04-21 21:43:03 -04:00
parent e259cfa79d
commit c9239f6921
+1 -1
View File
@@ -17,7 +17,7 @@
#define PTR_NOFFSET(p, off) ((void *)(char *)(p) - (off))
/* Bit related macros */
#define BIT(n) (1 << (n))
#define BIT(n) (1ULL << (n))
#define ISSET(v, f) ((v) & (f))
/* Align up/down a value */