bluez5: media-sink: Fix format specifier for log

This should fix the build on 32-bit systems.
This commit is contained in:
Sanchayan Maity 2025-05-07 13:02:10 +05:30
parent 8c8fd97698
commit d96485190d

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 = %ld",
spa_log_trace(this->log, "%" PRIu64 " - %" PRIu64 " / 20ms = %zu",
tn, this->asha->ref_t0, num_packets);
if (this->asha->ref_t0 > tn)