From c03064ea71dba91a8fd94e37fabd401a66b8cc7f Mon Sep 17 00:00:00 2001 From: Jeff Sharkey Date: Mon, 14 Jul 2014 13:57:54 -0700 Subject: [PATCH] Fix 64-bit builds. Change-Id: I1ff5c9c3dc8d870aef2885f8a1989c6c913ccb3d --- adb/commandline.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adb/commandline.c b/adb/commandline.c index cf02545b1..f8e9843b5 100644 --- a/adb/commandline.c +++ b/adb/commandline.c @@ -2009,7 +2009,7 @@ int install_multiple_app(transport_type transport, char* serial, int argc, char* } snprintf(buf, sizeof(buf), "exec:pm install-write -S %lld %d %d_%s -", - sb.st_size, session_id, i, get_basename(file)); + (long long int) sb.st_size, session_id, i, get_basename(file)); int localFd = adb_open(file, O_RDONLY); if (localFd < 0) {