summaryrefslogtreecommitdiffstats
path: root/adb/commandline.c
diff options
context:
space:
mode:
authorJeff Sharkey <jsharkey@android.com>2014-07-14 13:57:54 -0700
committerJeff Sharkey <jsharkey@android.com>2014-07-14 13:57:54 -0700
commitc03064ea71dba91a8fd94e37fabd401a66b8cc7f (patch)
treeac757a9fad8296c7bccd4b069affd79fbcd0ae42 /adb/commandline.c
parent960df97c2356f5a804d3ef87fe49f788d7ecdfaf (diff)
downloadcore-c03064ea71dba91a8fd94e37fabd401a66b8cc7f.tar.gz
core-c03064ea71dba91a8fd94e37fabd401a66b8cc7f.tar.bz2
core-c03064ea71dba91a8fd94e37fabd401a66b8cc7f.zip
Fix 64-bit builds.
Change-Id: I1ff5c9c3dc8d870aef2885f8a1989c6c913ccb3d
Diffstat (limited to 'adb/commandline.c')
-rw-r--r--adb/commandline.c2
1 files changed, 1 insertions, 1 deletions
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) {