Skip to content

Commit 0d23abb

Browse files
authored
Fix typo
1 parent f6620a8 commit 0d23abb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/util.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ extern "C" {
6464
#define DOWNCAST(pointer, type, member) \
6565
((type *)(((uint8_t *) pointer) - offsetof(type, member)))
6666

67-
/* True of x is a power of two */
67+
/* True if x is a power of two */
6868
#define POWER_OF_TWO(x) ((x) && !((x) & ((x) - 1)))
6969

7070
/* Macro to check if the value is in range */

0 commit comments

Comments
 (0)