warning fix - compare unsigned vs unsigned

use Eina_Unicode so we compare the same type
This commit is contained in:
Carsten Haitzler 2018-11-16 12:52:47 +00:00
parent b389ed2b89
commit 0d19a81c7f
2 changed files with 4 additions and 2 deletions

View File

@ -5066,7 +5066,8 @@ _smart_apply(Evas_Object *obj)
}
else
{
int fg, bg, fgext, bgext, codepoint, bold, italic;
int fg, bg, fgext, bgext, bold, italic;
Eina_Unicode codepoint;
// colors
fg = cells[x].att.fg;

View File

@ -248,7 +248,8 @@ struct _Termblock
struct _Termexp
{
int ch, left, id;
Eina_Unicode ch;
int left, id;
int x, y, w, h;
};