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:
parent
43d96f9c41
commit
fbbdf0484d
1 changed files with 2 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue