From 0d23abbe2c9f048a41c436c8901145f49fb3ce1c Mon Sep 17 00:00:00 2001 From: Colleirose <167055039+colleirose@users.noreply.github.com> Date: Sun, 14 Dec 2025 02:53:35 +0000 Subject: [PATCH] Fix typo --- include/util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/util.h b/include/util.h index 5594a4a706..6a82cc3404 100644 --- a/include/util.h +++ b/include/util.h @@ -64,7 +64,7 @@ extern "C" { #define DOWNCAST(pointer, type, member) \ ((type *)(((uint8_t *) pointer) - offsetof(type, member))) -/* True of x is a power of two */ +/* True if x is a power of two */ #define POWER_OF_TWO(x) ((x) && !((x) & ((x) - 1))) /* Macro to check if the value is in range */