commit | 2353ae303868d04e3a26002b2f2dc456c15e8170 | [log] [tgz] |
---|---|---|
author | Jason Sams <[email protected]> | Thu Oct 14 17:48:46 2010 -0700 |
committer | Jason Sams <[email protected]> | Thu Oct 14 17:48:46 2010 -0700 |
tree | fff7ee9e87999aeb8a4d656a69b94da6e72f9e35 | |
parent | 64cf5e9a6934ddb9efe6fd9914a6fd8a06d55ab4 [diff] [blame] |
Async type creation. Change-Id: I4d98446fabbf7e8a98c97f85b573a58c8a0c58c2
diff --git a/rsContext.cpp b/rsContext.cpp index be8fb0e..4dd074e 100644 --- a/rsContext.cpp +++ b/rsContext.cpp
@@ -976,9 +976,9 @@ (*name) = ob->getName(); } -void rsi_ObjDestroy(Context *rsc, void *obj) +void rsi_ObjDestroy(Context *rsc, void *optr) { - ObjectBase *ob = static_cast<ObjectBase *>(obj); + ObjectBase *ob = static_cast<ObjectBase *>(optr); rsc->removeName(ob); ob->decUserRef(); }