diff options
Diffstat (limited to 'src/misc/lv_text.c')
-rw-r--r-- | src/misc/lv_text.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/misc/lv_text.c b/src/misc/lv_text.c index d531176dd..9eb240cb2 100644 --- a/src/misc/lv_text.c +++ b/src/misc/lv_text.c @@ -426,13 +426,13 @@ char * lv_text_set_text_vfmt(const char * fmt, va_list ap) lv_vsnprintf(raw_txt, len + 1, fmt, ap); /*Get the size of the Arabic text and process it*/ - size_t len_ap = _lv_text_ap_calc_bytes_count(raw_txt); + size_t len_ap = lv_text_ap_calc_bytes_count(raw_txt); text = lv_malloc(len_ap + 1); LV_ASSERT_MALLOC(text); if(text == NULL) { return NULL; } - _lv_text_ap_proc(raw_txt, text); + lv_text_ap_proc(raw_txt, text); lv_free(raw_txt); #else |