1
0
Fork 0
forked from len0rd/rockbox

Make a few local variables static

Change-Id: Ieb77a7f2cdf765afa3121320d03c0478cd97eb0f
This commit is contained in:
Thomas Jarosch 2015-01-11 18:02:43 +01:00
parent 5f5a83e1c9
commit cfbd9cb22f
7 changed files with 10 additions and 10 deletions

View file

@ -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,