Fix build issue for aarch64
authorAyush Garg <ayush.garg@samsung.com>
Fri, 5 Jan 2024 14:15:18 +0000 (19:45 +0530)
committerAyush Garg <ayush.garg@samsung.com>
Fri, 5 Jan 2024 14:30:38 +0000 (20:00 +0530)
Signed-off-by: Ayush Garg <ayush.garg@samsung.com>
client/player.c

index 81f6f9a..10f1baf 100644 (file)
@@ -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);