aboutsummaryrefslogtreecommitdiffstats
path: root/tools/lib/bpf/test_libbpf.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/lib/bpf/test_libbpf.cpp')
-rw-r--r--tools/lib/bpf/test_libbpf.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/lib/bpf/test_libbpf.cpp b/tools/lib/bpf/test_libbpf.cpp
index abf3fc25c9fa..fc134873bb6d 100644
--- a/tools/lib/bpf/test_libbpf.cpp
+++ b/tools/lib/bpf/test_libbpf.cpp
@@ -8,11 +8,11 @@
8int main(int argc, char *argv[]) 8int main(int argc, char *argv[])
9{ 9{
10 /* libbpf.h */ 10 /* libbpf.h */
11 libbpf_set_print(NULL, NULL, NULL); 11 libbpf_set_print(NULL);
12 12
13 /* bpf.h */ 13 /* bpf.h */
14 bpf_prog_get_fd_by_id(0); 14 bpf_prog_get_fd_by_id(0);
15 15
16 /* btf.h */ 16 /* btf.h */
17 btf__new(NULL, 0, NULL); 17 btf__new(NULL, 0);
18} 18}