commit | 05304f1437fb842f957a3fe496d9eb6cf423f00e | [log] [tgz] |
---|---|---|
author | Maciej Żenczykowski <maze@google.com> | Thu Sep 07 15:25:55 2023 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Thu Sep 07 15:25:55 2023 +0000 |
tree | 0173b57003c1a12313bddd1e4653239d0f07c31b | |
parent | e129bc5958b87aa1d2d667f4709322d78e2e9287 [diff] | |
parent | 325f675273d9f20252674d56ce74ea8e74169806 [diff] |
Merge "fix a compile warning about out of order field init" into main
diff --git a/staticlibs/native/bpf_syscall_wrappers/include/BpfSyscallWrappers.h b/staticlibs/native/bpf_syscall_wrappers/include/BpfSyscallWrappers.h index ba16d53..13f7cb3 100644 --- a/staticlibs/native/bpf_syscall_wrappers/include/BpfSyscallWrappers.h +++ b/staticlibs/native/bpf_syscall_wrappers/include/BpfSyscallWrappers.h
@@ -175,8 +175,8 @@ return bpf(BPF_PROG_RUN, { .test = { .prog_fd = BPF_FD_TO_U32(prog_fd), - .data_in = ptr_to_u64(data), .data_size_in = data_size, + .data_in = ptr_to_u64(data), }, }); }