Skip to content

Commit

Permalink
[BOX32] Removed a warning
Browse files Browse the repository at this point in the history
  • Loading branch information
ptitSeb committed Sep 25, 2024
1 parent 0c4c89f commit 90332ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/box32.c
Original file line number Diff line number Diff line change
Expand Up @@ -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]);
Expand Down

0 comments on commit 90332ec

Please sign in to comment.