forked from len0rd/rockbox
system-android: cast void* to uintptr_t*
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27682 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
82e1332db9
commit
40e3b09678
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ Java_org_rockbox_RockboxActivity_main(JNIEnv *env, jobject this)
|
|||
(void)env;
|
||||
(void)this;
|
||||
volatile uintptr_t stack = 0;
|
||||
stackbegin = stackend = &stack;
|
||||
stackbegin = stackend = (uintptr_t*) &stack;
|
||||
env_ptr = env;
|
||||
RockboxActivity_instance = this;
|
||||
RockboxActivity_class = (*env)->GetObjectClass(env, this);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue