diff options
author | Hengqi Chen <hengqi.chen@gmail.com> | 2021-04-05 12:01:19 +0800 |
---|---|---|
committer | Andrii Nakryiko <andrii@kernel.org> | 2021-04-05 07:14:13 -0700 |
commit | 1e1032b0c4afaed7739a6681ff6b4cb120b82994 (patch) | |
tree | a61b9861abd4ae25e7c97cdb8945c9a9e63850a0 /tools | |
parent | f73ea1eb4cce66376cc1dd94b4a083ffb9eeb123 (diff) | |
download | linux-stable-1e1032b0c4afaed7739a6681ff6b4cb120b82994.tar.gz linux-stable-1e1032b0c4afaed7739a6681ff6b4cb120b82994.tar.bz2 linux-stable-1e1032b0c4afaed7739a6681ff6b4cb120b82994.zip |
libbpf: Fix KERNEL_VERSION macro
Add missing ')' for KERNEL_VERSION macro.
Signed-off-by: Hengqi Chen <hengqi.chen@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20210405040119.802188-1-hengqi.chen@gmail.com
Diffstat (limited to 'tools')
-rw-r--r-- | tools/lib/bpf/bpf_helpers.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lib/bpf/bpf_helpers.h b/tools/lib/bpf/bpf_helpers.h index cc2e51c64a54..b904128626c2 100644 --- a/tools/lib/bpf/bpf_helpers.h +++ b/tools/lib/bpf/bpf_helpers.h @@ -51,7 +51,7 @@ #endif #ifndef KERNEL_VERSION -#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + ((c) > 255 ? 255 : (c)) +#define KERNEL_VERSION(a, b, c) (((a) << 16) + ((b) << 8) + ((c) > 255 ? 255 : (c))) #endif /* |