about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorptitSeb <seebastien.chev@gmail.com>2023-09-02 14:56:56 +0200
committerptitSeb <seebastien.chev@gmail.com>2023-09-02 14:56:56 +0200
commit683f5d64b94a1ee9d7ac486c0548c4ef43465b53 (patch)
treebad1cf1de22c31d5dd74d0bd6bba9941e7f1a696
parentd26469c6a4ecae2071ac38b920c55d228bc4ac91 (diff)
downloadbox64-683f5d64b94a1ee9d7ac486c0548c4ef43465b53.tar.gz
box64-683f5d64b94a1ee9d7ac486c0548c4ef43465b53.zip
[ANDROID] Oh, again another attempt to fix the build (and still my fault, typo, typo, typo)
-rw-r--r--src/emu/x64run_private.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/x64run_private.c b/src/emu/x64run_private.c
index 9427eb71..5056ff90 100644
--- a/src/emu/x64run_private.c
+++ b/src/emu/x64run_private.c
@@ -41,7 +41,7 @@ void EXPORT my___libc_init(x64emu_t* emu, void* raw_args __unused, void (*onexit
     // should call structors->preinit_array and structors->init_array!
     // call main and finish
     PushExit(emu);
-    R_RIP=(untptr_t)main;
+    R_RIP=(uintptr_t)main;
 
     DynaRun(emu);