mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2025-01-18 08:32:33 +01:00
nlmon: fix -Wformat under musl 1.2.0
musl 1.2.0 uses 64-bit time, even under 32-bit OSes. Cast to int64_t and use the proper macro.
This commit is contained in:
parent
426681aeb2
commit
6b12593ec0
@ -216,8 +216,9 @@ static void print_packet(const struct timeval *tv, char ident,
|
||||
ts_pos += n;
|
||||
}
|
||||
|
||||
n = sprintf(ts_str + ts_pos, " %lu.%06lu",
|
||||
tv->tv_sec - time_offset, tv->tv_usec);
|
||||
n = sprintf(ts_str + ts_pos, " %" PRId64 ".%06" PRId64,
|
||||
(int64_t)tv->tv_sec - time_offset,
|
||||
(int64_t)tv->tv_usec);
|
||||
if (n > 0) {
|
||||
ts_pos += n;
|
||||
ts_len += n;
|
||||
|
Loading…
Reference in New Issue
Block a user