diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2024-09-25 14:51:56 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2024-09-25 14:51:56 +0200 |
| commit | 90332ecf6e78c538a378677de4342ba8488da656 (patch) | |
| tree | ed278f9917e9a9130e070427576b60d0de99e400 /src | |
| parent | 0c4c89f3ca4598f66c6fad1d4b7bdf1b6a811eb1 (diff) | |
| download | box64-90332ecf6e78c538a378677de4342ba8488da656.tar.gz box64-90332ecf6e78c538a378677de4342ba8488da656.zip | |
[BOX32] Removed a warning
Diffstat (limited to 'src')
| -rw-r--r-- | src/box32.c | 2 |
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]); |