billiob pushed a commit to branch master.

http://git.enlightenment.org/apps/terminology.git/commit/?id=7cc50d4e055a29c28aab3e614eae4848ce70ac33

commit 7cc50d4e055a29c28aab3e614eae4848ce70ac33
Author: Boris Faure <bill...@gmail.com>
Date:   Wed Jan 22 23:22:42 2014 +0100

    fix wrong cast. thanks to OnlyHuman
---
 src/bin/termpty.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bin/termpty.c b/src/bin/termpty.c
index d7899eb..0fcd6f5 100644
--- a/src/bin/termpty.c
+++ b/src/bin/termpty.c
@@ -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)

-- 


Reply via email to