Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c03064ea authored by Jeff Sharkey's avatar Jeff Sharkey
Browse files

Fix 64-bit builds.

Change-Id: I1ff5c9c3dc8d870aef2885f8a1989c6c913ccb3d
parent 960df97c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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) {