1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00

[viewer] cast in non-utf8

This commit is contained in:
Witold Filipczyk 2024-11-18 16:41:54 +01:00
parent 5c3f8951de
commit ad47abf180

View File

@ -500,7 +500,7 @@ memacpy_u(char *text, int textlen, int utf8)
mem[textlen] = 0;
return mem;
#else
return memacpy(text, textlen);
return (UCHAR *)memacpy(text, textlen);
#endif
}