forked from len0rd/rockbox
Limit more variables to file scope
Change-Id: I30219d626316776eb73b4205d63376fa3dbc6361
This commit is contained in:
parent
85c98bc63c
commit
2a3e1628a5
21 changed files with 70 additions and 77 deletions
|
|
@ -34,10 +34,10 @@ extern char* skin_start;
|
|||
extern char* skin_buffer;
|
||||
|
||||
/* Global error variables */
|
||||
int error_line;
|
||||
int error_col;
|
||||
const char *error_line_start;
|
||||
char* error_message;
|
||||
static int error_line;
|
||||
static int error_col;
|
||||
static const char *error_line_start;
|
||||
static char* error_message;
|
||||
|
||||
|
||||
static inline struct skin_element*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue