timesyncd: avoid signed/unsigned comparison (#7842)
be32toh() returns uint32_t, and m->trans_time.tv_nsec is defined as long in struct timespec. Let's add a cast to avoid the warning. Fixes #7789.
Loading
Please register or sign in to comment
be32toh() returns uint32_t, and m->trans_time.tv_nsec is defined as long in struct timespec. Let's add a cast to avoid the warning. Fixes #7789.