expedite: Don'T compare signed and unsigned values.

t_count gets only incrmented and starts with 0. Safe to make it unsigned which make its sane to
comapre against another unsigned value in i.

SVN revision: 75074
This commit is contained in:
Stefan Schmidt 2012-08-10 09:18:52 +00:00
parent 5fb6f8bccf
commit 4311466d1a
1 changed files with 1 additions and 1 deletions

View File

@ -229,7 +229,7 @@ _ui_all(void)
Eina_List *l;
double fps = 0.0;
double wfps = 0.0;
int t_count = 0;
unsigned int t_count = 0;
unsigned int i;
double avgw = 0.0;