commit | c03064ea71dba91a8fd94e37fabd401a66b8cc7f | [log] [tgz] |
---|---|---|
author | Jeff Sharkey <jsharkey@android.com> | Mon Jul 14 13:57:54 2014 -0700 |
committer | Jeff Sharkey <jsharkey@android.com> | Mon Jul 14 13:57:54 2014 -0700 |
tree | ac757a9fad8296c7bccd4b069affd79fbcd0ae42 | |
parent | 960df97c2356f5a804d3ef87fe49f788d7ecdfaf [diff] |
Fix 64-bit builds. Change-Id: I1ff5c9c3dc8d870aef2885f8a1989c6c913ccb3d
diff --git a/adb/commandline.c b/adb/commandline.c index cf02545..f8e9843 100644 --- a/adb/commandline.c +++ b/adb/commandline.c
@@ -2009,7 +2009,7 @@ } 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) {