Killed unnecessary global variables by making them static.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17184 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Bertrik Sikken 2008-04-20 10:24:15 +00:00
parent 8924686224
commit db2d61f4ea
9 changed files with 11 additions and 15 deletions

View file

@ -42,7 +42,7 @@ static void scroll_thread(void);
static char scroll_stack[DEFAULT_STACK_SIZE*3];
static const char scroll_name[] = "scroll";
struct scrollinfo lcd_scroll[LCD_SCROLLABLE_LINES];
static struct scrollinfo lcd_scroll[LCD_SCROLLABLE_LINES];
#ifdef HAVE_REMOTE_LCD
struct scrollinfo lcd_remote_scroll[LCD_REMOTE_SCROLLABLE_LINES];