util/nvmutil: remove unnecessary parentheses

This commit is contained in:
Leah Rowe 2023-06-01 07:40:40 +01:00
parent 6885200c8b
commit 5a9fac2a63
1 changed files with 2 additions and 2 deletions

View File

@ -66,8 +66,8 @@ void err_if(int condition);
#define SIZE_4KB 0x1000
#define SIZE_8KB 0x2000
#define word(pos16, partnum) (buf16[pos16 + (partnum << 11)])
#define ERR() (errno = errno ? errno : ECANCELED)
#define word(pos16, partnum) buf16[pos16 + (partnum << 11)]
#define ERR() errno = errno ? errno : ECANCELED
#define xorswap(x, y) x ^= y, y ^= x, x ^= y
uint16_t buf16[SIZE_4KB];