commit | 1404e6547265c50b85262436f8275c80750c6808 | [log] [tgz] |
---|---|---|
author | Jeff Sharkey <jsharkey@android.com> | Mon Jul 14 20:59:04 2014 +0000 |
committer | Android (Google) Code Review <android-gerrit@google.com> | Mon Jul 14 18:38:02 2014 +0000 |
tree | 3eb168ecbd102c3edb40757ee660a96c2758f5bd | |
parent | fd0f390869962fb314e39983155372b31be6ff92 [diff] | |
parent | c03064ea71dba91a8fd94e37fabd401a66b8cc7f [diff] |
Merge "Fix 64-bit builds." into lmp-dev
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) {