Make BIT() unsigned int instead of int
This is needed to avoid ubsan warnings on BIT(31). Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
bd47c80564
commit
32d6463fe7
1 changed files with 1 additions and 1 deletions
|
@ -433,7 +433,7 @@ void perror(const char *s);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef BIT
|
#ifndef BIT
|
||||||
#define BIT(x) (1 << (x))
|
#define BIT(x) (1U << (x))
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue