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

Commit 63901792 authored by Jason Sams's avatar Jason Sams Committed by Android (Google) Code Review
Browse files

Merge "Fix object cast."

parents c900a79b 9c25aee5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -112,7 +112,7 @@ static void
nObjDestroy(JNIEnv *_env, jobject _this, RsContext con, jint obj)
{
    LOG_API("nObjDestroy, con(%p) obj(%p)", con, (void *)obj);
    rsObjDestroy(con, (uint32_t)obj);
    rsObjDestroy(con, (void *)obj);
}