aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNarayan Kamath <narayan@google.com>2015-02-25 16:53:04 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2015-02-25 16:53:04 +0000
commit07d2542d870d4bb92c9cfb85bd0ac8f9bf7ba4c4 (patch)
treedd237aaefe8605428dcf4aa5d13c41dcc3b02b35
parent8007a21e799ec05a45435d4b688116e88de98221 (diff)
parentb3f4ed86e95a1270258b288cfb22c42c6f163efc (diff)
downloadbootable_recovery-07d2542d870d4bb92c9cfb85bd0ac8f9bf7ba4c4.zip
bootable_recovery-07d2542d870d4bb92c9cfb85bd0ac8f9bf7ba4c4.tar.gz
bootable_recovery-07d2542d870d4bb92c9cfb85bd0ac8f9bf7ba4c4.tar.bz2
am b3f4ed86: am 82eea3fd: Merge "Fix LP64 build for minadbd."
* commit 'b3f4ed86e95a1270258b288cfb22c42c6f163efc': Fix LP64 build for minadbd.
-rw-r--r--minadbd/services.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/minadbd/services.c b/minadbd/services.c
index 7e419cc..581d847 100644
--- a/minadbd/services.c
+++ b/minadbd/services.c
@@ -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);