Fix LP64 build for minadbd.
services.c:57:12: error: format '%llu' expects argument of type 'long long unsigned int', but argument 2 has type 'uint64_t' [-Werror=format=] Change-Id: Ieba691bf9e7a30c8bb38f4e1f36e86b6ea3f8c80
This commit is contained in:
@@ -53,8 +53,8 @@ static void sideload_host_service(int sfd, void* cookie)
|
||||
s = adb_strtok_r(NULL, ":", &saveptr);
|
||||
uint32_t block_size = strtoul(s, NULL, 10);
|
||||
|
||||
printf("sideload-host file size %llu block size %" PRIu32 "\n", file_size,
|
||||
block_size);
|
||||
printf("sideload-host file size %" PRIu64 " block size %" PRIu32 "\n",
|
||||
file_size, block_size);
|
||||
|
||||
int result = run_adb_fuse(sfd, file_size, block_size);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user