From: Ayush Garg Date: Fri, 5 Jan 2024 14:15:18 +0000 (+0530) Subject: Fix build issue for aarch64 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fheads%2Fbluez_upgrade_5.70;p=platform%2Fupstream%2Fbluez.git Fix build issue for aarch64 Signed-off-by: Ayush Garg --- diff --git a/client/player.c b/client/player.c index 81f6f9aa..10f1baf3 100644 --- a/client/player.c +++ b/client/player.c @@ -3995,7 +3995,8 @@ static int transport_send_seq(struct transport *transport, int fd, uint32_t num) bt_shell_echo("[seq %d %d.%03ds] send: %lld/%lld bytes", transport->seq, secs, (nsecs + 500000) / 1000000, - offset, transport->stat.st_size); + (long long int)offset, + (long long int)transport->stat.st_size); } free(buf);