about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2024-09-13 10:58:10 +0200
committerptitSeb <sebastien.chev@gmail.com>2024-09-13 10:58:10 +0200
commit32c94ac31a13f4f4201c90cfdf8584fdbcd301f0 (patch)
treea5d12872d95d4bba17dfeeab1c64d313c88a6b67 /src
parentaf476e0d10fa082df386aa45aa6f54f3f1c9fb45 (diff)
downloadbox64-32c94ac31a13f4f4201c90cfdf8584fdbcd301f0.tar.gz
box64-32c94ac31a13f4f4201c90cfdf8584fdbcd301f0.zip
[BOX32] Fixed 32bits wrapped localeconv (for #1780)
Diffstat (limited to 'src')
-rwxr-xr-xsrc/wrapped32/wrappedlibc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wrapped32/wrappedlibc.c b/src/wrapped32/wrappedlibc.c
index e5be378c..d1aff364 100755
--- a/src/wrapped32/wrappedlibc.c
+++ b/src/wrapped32/wrappedlibc.c
@@ -2427,6 +2427,7 @@ EXPORT void* my32_localeconv(x64emu_t* emu)
     static struct i386_lconv ret = {0};
     struct lconv* l = localeconv();
     ret.decimal_point = to_cstring(l->decimal_point);
+    ret.thousands_sep = to_cstring(l->thousands_sep);
     ret.grouping = to_cstring(l->grouping);
     ret.int_curr_symbol = to_cstring(l->int_curr_symbol);
     ret.currency_symbol = to_cstring(l->currency_symbol);