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

Commit 19641d23 authored by Jeff Sharkey's avatar Jeff Sharkey Committed by android-build-merger
Browse files

Merge "Let\'s try casting to fix the build." into nyc-dev am: 6c444a40

am: dba2879f

* commit 'dba2879f':
  Let's try casting to fix the build.

Change-Id: Ieeb7caa808d0a62c08a40a2962b7ca4a7067edcf
parents 679556dd dba2879f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -324,7 +324,7 @@ static int do_get_app_data_inode(char **arg, char reply[REPLY_MAX]) {
    /* const char *uuid, const char *pkgname, int userid, int flags */
    res = get_app_data_inode(parse_null(arg[0]), arg[1], atoi(arg[2]), atoi(arg[3]), &inode);

    snprintf(reply, REPLY_MAX, "%" PRId64, inode);
    snprintf(reply, REPLY_MAX, "%" PRId64, (int64_t) inode);
    return res;
}