18/07/2024 21:07, Luca Boccassi: > On Thu, 18 Jul 2024 at 18:43, Stephen Hemminger > <step...@networkplumber.org> wrote: > > > > The conversion from seconds to nanoseconds in the pcapng test > > would overflow on 32 bit platforms leading to this test failing. > > > > Reported-by: Luca Boccassi <bl...@debian.org> > > Signed-off-by: Stephen Hemminger <step...@networkplumber.org> > > --- > > - ns = h->ts.tv_sec * NS_PER_S + h->ts.tv_usec; > > + ns = (uint64_t)h->ts.tv_sec * NS_PER_S + h->ts.tv_usec; > > Thanks this fixes the issue, the build is now green > > Tested-by: Luca Boccassi <bl...@debian.org>
Applied, thanks.