On Tue, Apr 16, 2019 at 11:47 AM <[email protected]> wrote: > > From: Andrii Nakryiko <[email protected]> > > Using %ld for printing out value of ptrdiff_t type is not portable > between 32-bit and 64-bit archs. This is causing compilation errors for > libbpf on 32-bit platform (discovered as part of an effort to integrate > libbpf into systemd ([0])). Proper formatter is %td, which is used in > this patch. > > v2->v1: > - add Reported-by > - provide more context on how this issue was discovered > > [0] https://github.com/systemd/systemd/pull/12151 > > Reported-by: Evgeny Vereshchagin <[email protected]> > Cc: Daniel Borkmann <[email protected]> > Cc: Alexei Starovoitov <[email protected]> > Cc: Yonghong Song <[email protected]> > Signed-off-by: Andrii Nakryiko <[email protected]>
Applied. Thanks
