forked from len0rd/rockbox
Make a few local variables static
Change-Id: Ieb77a7f2cdf765afa3121320d03c0478cd97eb0f
This commit is contained in:
parent
5f5a83e1c9
commit
cfbd9cb22f
7 changed files with 10 additions and 10 deletions
|
@ -27,9 +27,9 @@
|
|||
#define SECTOR_SIZE 512
|
||||
#define NUM_SECTORS 16384
|
||||
|
||||
unsigned char ramdisk[SECTOR_SIZE * NUM_SECTORS];
|
||||
static unsigned char ramdisk[SECTOR_SIZE * NUM_SECTORS];
|
||||
|
||||
long last_disk_activity = -1;
|
||||
static long last_disk_activity = -1;
|
||||
|
||||
int ramdisk_read_sectors(IF_MD(int drive,)
|
||||
unsigned long start,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue