summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAyush Garg <ayush.garg@samsung.com>2024-01-05 19:45:18 +0530
committerAyush Garg <ayush.garg@samsung.com>2024-01-05 20:00:38 +0530
commitc7d545402879abb7dc635ea7ecaf5fcd56ad0200 (patch)
tree87a5f71ad65c64753d99b1200223c8e6d6e4d102
parent0687c02b45f2091d1ce788ae6fb4b7cd3d888e2b (diff)
downloadbluez-c7d545402879abb7dc635ea7ecaf5fcd56ad0200.tar.gz
bluez-c7d545402879abb7dc635ea7ecaf5fcd56ad0200.tar.bz2
bluez-c7d545402879abb7dc635ea7ecaf5fcd56ad0200.zip
Fix build issue for aarch64
Signed-off-by: Ayush Garg <ayush.garg@samsung.com>
-rw-r--r--client/player.c3
1 files changed, 2 insertions, 1 deletions
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);