about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2024-09-25 14:51:56 +0200
committerptitSeb <sebastien.chev@gmail.com>2024-09-25 14:51:56 +0200
commit90332ecf6e78c538a378677de4342ba8488da656 (patch)
treeed278f9917e9a9130e070427576b60d0de99e400 /src
parent0c4c89f3ca4598f66c6fad1d4b7bdf1b6a811eb1 (diff)
downloadbox64-90332ecf6e78c538a378677de4342ba8488da656.tar.gz
box64-90332ecf6e78c538a378677de4342ba8488da656.zip
[BOX32] Removed a warning
Diffstat (limited to 'src')
-rw-r--r--src/box32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/box32.c b/src/box32.c
index 16b28f69..c89b0545 100644
--- a/src/box32.c
+++ b/src/box32.c
@@ -170,7 +170,7 @@ void to_struct_locale(ptr_t d, const struct_locale_t *src) {
 	struct_locale_32_t* dest = from_ptrv(d);
     // save the original locale
     dest->sign = LOCALE_SIGN;
-    dest->org = src;
+    dest->org = (void*)src;
     //copy the 2 arrays
     for(int i=0; i<13; ++i) {
 	    dest->p0[i] = to_hashv(src->p0[i]);