commit | 17e54b096e6a8dc92b92c59c2e3437550383b27a | [log] [tgz] |
---|---|---|
author | Andrii Nakryiko <andriin@fb.com> | Thu Sep 03 21:16:10 2020 -0700 |
committer | Daniel Borkmann <daniel@iogearbox.net> | Fri Sep 04 14:35:12 2020 +0200 |
tree | 5b834fc3d12e6b5d3a01fec27ce7719958c54f4d | |
parent | 95cec14b0308085c028c4d4fb3d09fad3902b4c3 [diff] |
libbpf: Fix another __u64 cast in printf Another issue of __u64 needing either %lu or %llu, depending on the architecture. Fix with cast to `unsigned long long`. Fixes: 7e06aad52929 ("libbpf: Add multi-prog section support for struct_ops") Signed-off-by: Andrii Nakryiko <andriin@fb.com> Signed-off-by: Daniel Borkmann <daniel@iogearbox.net> Link: https://lore.kernel.org/bpf/20200904041611.1695163-1-andriin@fb.com