From cf86e2f85d98ed10cf5e0672e41631f6ea7e3e34 Mon Sep 17 00:00:00 2001 From: Ying Wang Date: Thu, 15 May 2014 20:06:40 -0700 Subject: Fix host 64-bit build. Bug: 13751317 Change-Id: Ib42d24408d053bacc24142ed18fc5f3181d2345b --- fastboot/fastboot.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'fastboot') diff --git a/fastboot/fastboot.c b/fastboot/fastboot.c index 3a140abbd..9c04c21ea 100644 --- a/fastboot/fastboot.c +++ b/fastboot/fastboot.c @@ -32,6 +32,7 @@ #include #include #include +#include #include #include #include @@ -576,7 +577,7 @@ static int64_t get_target_sparse_limit(struct usb_handle *usb) if (!status) { limit = strtoul(response, NULL, 0); if (limit > 0) { - fprintf(stderr, "target reported max download size of %lld bytes\n", + fprintf(stderr, "target reported max download size of %" PRId64 " bytes\n", limit); } } -- cgit v1.2.3