From e19351ab91b3723975800c640e3dcad3efdd915d Mon Sep 17 00:00:00 2001 From: Rihards Skuja Date: Mon, 22 Jan 2018 14:31:32 +0200 Subject: [PATCH] Fix typo --- common/include/common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/include/common.h b/common/include/common.h index 12c5127..7e2d79a 100644 --- a/common/include/common.h +++ b/common/include/common.h @@ -3,7 +3,7 @@ #include -// Bit manioulation +// Bit manipulation #define BIT(mask) (1 << (mask)) #define SET(var, mask) ((var) |= (uint8_t)BIT(mask)) #define CLR(var, mask) ((var) &= (uint8_t)~(BIT(mask)))