util/nvmutil: remove unnecessary parentheses
parent
6885200c8b
commit
5a9fac2a63
|
@ -66,8 +66,8 @@ void err_if(int condition);
|
||||||
#define SIZE_4KB 0x1000
|
#define SIZE_4KB 0x1000
|
||||||
#define SIZE_8KB 0x2000
|
#define SIZE_8KB 0x2000
|
||||||
|
|
||||||
#define word(pos16, partnum) (buf16[pos16 + (partnum << 11)])
|
#define word(pos16, partnum) buf16[pos16 + (partnum << 11)]
|
||||||
#define ERR() (errno = errno ? errno : ECANCELED)
|
#define ERR() errno = errno ? errno : ECANCELED
|
||||||
#define xorswap(x, y) x ^= y, y ^= x, x ^= y
|
#define xorswap(x, y) x ^= y, y ^= x, x ^= y
|
||||||
|
|
||||||
uint16_t buf16[SIZE_4KB];
|
uint16_t buf16[SIZE_4KB];
|
||||||
|
|
Loading…
Reference in New Issue