fix wrong cast. thanks to OnlyHuman

This commit is contained in:
Boris Faure 2014-01-22 23:22:42 +01:00
parent ab9243b94f
commit 7cc50d4e05
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ _handle_buf(Termpty *ty, const Eina_Unicode *codepoints, int len)
Eina_Unicode *c, *ce, *b;
int n, bytes;
c = (int *)codepoints;
c = (Eina_Unicode *)codepoints;
ce = &(c[len]);
if (ty->buf)