bluez: fix format specifier

zu is for size_t, PRIu64 is for uint64_t
This commit is contained in:
Wim Taymans 2025-05-07 09:38:24 +02:00
parent d96485190d
commit 445ca819ce

View file

@ -1321,7 +1321,7 @@ static uint64_t asha_seqnum(struct impl *this)
uint64_t dt = tn - this->asha->ref_t0;
uint64_t num_packets = (dt + ASHA_CONN_INTERVAL / 2) / ASHA_CONN_INTERVAL;
spa_log_trace(this->log, "%" PRIu64 " - %" PRIu64 " / 20ms = %zu",
spa_log_trace(this->log, "%" PRIu64 " - %" PRIu64 " / 20ms = %"PRIu64,
tn, this->asha->ref_t0, num_packets);
if (this->asha->ref_t0 > tn)