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
|
@ -19,7 +19,7 @@ extern unsigned char audiobufend[];
|
|||
/* defined in linker script */
|
||||
extern unsigned char audiobuffer[];
|
||||
#else /* PLATFORM_HOSTED */
|
||||
unsigned char audiobuffer[((MEMORYSIZE)*1024-768)*1024];
|
||||
static unsigned char audiobuffer[((MEMORYSIZE)*1024-768)*1024];
|
||||
unsigned char *audiobufend = audiobuffer + sizeof(audiobuffer);
|
||||
extern unsigned char *audiobufend;
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue