diff options
author | Narayan Kamath <narayan@google.com> | 2015-02-25 18:04:59 +0100 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2015-02-25 18:04:59 +0100 |
commit | 292baa0ddb1508ffeedec03d789d9599fc6495f0 (patch) | |
tree | e528d1a5f6b5a2c4b39c334b1157374cbacf8c41 | |
parent | am 8007a21e: am 6deb3d5c: am 35fbf787: Merge "Fix build from implicit declaration." (diff) | |
parent | am b3f4ed86: am 82eea3fd: Merge "Fix LP64 build for minadbd." (diff) | |
download | android_bootable_recovery-292baa0ddb1508ffeedec03d789d9599fc6495f0.tar android_bootable_recovery-292baa0ddb1508ffeedec03d789d9599fc6495f0.tar.gz android_bootable_recovery-292baa0ddb1508ffeedec03d789d9599fc6495f0.tar.bz2 android_bootable_recovery-292baa0ddb1508ffeedec03d789d9599fc6495f0.tar.lz android_bootable_recovery-292baa0ddb1508ffeedec03d789d9599fc6495f0.tar.xz android_bootable_recovery-292baa0ddb1508ffeedec03d789d9599fc6495f0.tar.zst android_bootable_recovery-292baa0ddb1508ffeedec03d789d9599fc6495f0.zip |
-rw-r--r-- | minadbd/services.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/minadbd/services.c b/minadbd/services.c index 7e419cc85..581d847fc 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); |