]> git.ipfire.org Git - thirdparty/iproute2.git/commitdiff
uapi: minor upstream btf.h header change
authorStephen Hemminger <stephen@networkplumber.org>
Fri, 24 May 2019 22:51:06 +0000 (15:51 -0700)
committerStephen Hemminger <stephen@networkplumber.org>
Fri, 24 May 2019 22:51:06 +0000 (15:51 -0700)
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
include/uapi/linux/btf.h

index 73eba2e5f0f2f70fb20672fdc7ee7d49751df967..8ef8001de476c8a650137c3c6644c76c5aa38054 100644 (file)
@@ -83,7 +83,7 @@ struct btf_type {
  * is the 32 bits arrangement:
  */
 #define BTF_INT_ENCODING(VAL)  (((VAL) & 0x0f000000) >> 24)
-#define BTF_INT_OFFSET(VAL)    (((VAL  & 0x00ff0000)) >> 16)
+#define BTF_INT_OFFSET(VAL)    (((VAL) & 0x00ff0000) >> 16)
 #define BTF_INT_BITS(VAL)      ((VAL)  & 0x000000ff)
 
 /* Attributes stored in the BTF_INT_ENCODING */