prevent compiler warning by using unsigned int where suitable

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@811 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2002-05-30 06:57:39 +00:00
parent 43d96f9c41
commit fbbdf0484d

View file

@ -60,7 +60,8 @@ struct credit credits[] = {
void show_credits(void)
{
int i,j;
unsigned int i;
int j;
int line = 0;
lcd_clear_display();