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

Commit 9c25aee5 authored by Jason Sams's avatar Jason Sams
Browse files

Fix object cast.

Change-Id: Idcf1b43392d43b6b46040b59551b73df6d6e42a9
parent 3b9c52ab
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);
}