aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHengqi Chen <[email protected]>2021-04-05 12:01:19 +0800
committerAndrii Nakryiko <[email protected]>2021-04-05 07:14:13 -0700
commit1e1032b0c4afaed7739a6681ff6b4cb120b82994 (patch)
treea61b9861abd4ae25e7c97cdb8945c9a9e63850a0
parentf73ea1eb4cce66376cc1dd94b4a083ffb9eeb123 (diff)
libbpf: Fix KERNEL_VERSION macro
Add missing ')' for KERNEL_VERSION macro. Signed-off-by: Hengqi Chen <[email protected]> Signed-off-by: Andrii Nakryiko <[email protected]> Link: https://lore.kernel.org/bpf/[email protected]
-rw-r--r--tools/lib/bpf/bpf_helpers.h2
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
/*