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

Commit 82eea3fd authored by Narayan Kamath's avatar Narayan Kamath Committed by Gerrit Code Review
Browse files

Merge "Fix LP64 build for minadbd."

parents 35fbf787 017db6d8
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -53,8 +53,8 @@ static void sideload_host_service(int sfd, void* cookie)
    s = adb_strtok_r(NULL, ":", &saveptr);
    uint32_t block_size = strtoul(s, NULL, 10);

    printf("sideload-host file size %llu block size %" PRIu32 "\n", file_size,
           block_size);
    printf("sideload-host file size %" PRIu64 " block size %" PRIu32 "\n",
           file_size, block_size);

    int result = run_adb_fuse(sfd, file_size, block_size);