From c7d545402879abb7dc635ea7ecaf5fcd56ad0200 Mon Sep 17 00:00:00 2001 From: Ayush Garg Date: Fri, 5 Jan 2024 19:45:18 +0530 Subject: [PATCH] Fix build issue for aarch64 Signed-off-by: Ayush Garg --- client/player.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/player.c b/client/player.c index 81f6f9a..10f1baf 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); -- 2.7.4