1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-28 07:03:00 +08:00

Remove locale reference

This commit is contained in:
xennex22 2020-03-17 04:27:56 -07:00 committed by GitHub
parent 72b9a2b739
commit 61e296dc2a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -91,7 +91,7 @@ char * lv_utils_num_to_str_fixed(int32_t num, int decimals, char * buf)
char * p = buf;
while(*p != 0)
p++;
*p++ = localeconv()->decimal_point[0];
*p++ = '.';
/*now work backwards from end*/
num = num % dec_power;