summaryrefslogtreecommitdiffstats
path: root/firmware
diff options
context:
space:
mode:
authorRafaël Carré <rafael.carre@gmail.com>2010-08-03 17:53:43 +0000
committerRafaël Carré <rafael.carre@gmail.com>2010-08-03 17:53:43 +0000
commit40e3b09678d2b9a8aee578072b9e7ef62c985b98 (patch)
tree7d4c45635b8d3568a35e9f59da6282a555c0a78a /firmware
parent82e1332db96cc3299a2487b949e0451a754c3695 (diff)
downloadrockbox-40e3b09678d2b9a8aee578072b9e7ef62c985b98.tar.gz
rockbox-40e3b09678d2b9a8aee578072b9e7ef62c985b98.zip
system-android: cast void* to uintptr_t*
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27682 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r--firmware/target/hosted/android/system-android.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/target/hosted/android/system-android.c b/firmware/target/hosted/android/system-android.c
index 07dff2ed56..16c6973474 100644
--- a/firmware/target/hosted/android/system-android.c
+++ b/firmware/target/hosted/android/system-android.c
@@ -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);