Fix 64-bit builds.

Change-Id: I1ff5c9c3dc8d870aef2885f8a1989c6c913ccb3d
diff --git a/commandline.c b/commandline.c
index cf02545..f8e9843 100644
--- a/commandline.c
+++ b/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) {