Merge "Fix object cast."

This commit is contained in:
Jason Sams
2010-10-14 17:58:39 -07:00
committed by Android (Google) Code Review

View File

@@ -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);
}