Parcourir la source

Undefine __bitwise before defining it for sparse

This gets rid of a compiler warning due to a bit different construction
in linux/types.h.

Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
Jouni Malinen il y a 8 ans
Parent
commit
6527b52ead
1 fichiers modifiés avec 1 ajouts et 0 suppressions
  1. 1 0
      src/utils/common.h

+ 1 - 0
src/utils/common.h

@@ -419,6 +419,7 @@ void perror(const char *s);
  */
 #ifdef __CHECKER__
 #define __force __attribute__((force))
+#undef __bitwise
 #define __bitwise __attribute__((bitwise))
 #else
 #define __force