mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
[Fix Yellow] skin_parser.c const correctness
Change-Id: Ibc3696d807649c649db68cbdfab19b20391eab71
This commit is contained in:
parent
75a4937568
commit
213686b55c
1 changed files with 2 additions and 2 deletions
|
@ -499,10 +499,10 @@ static int skin_parse_tag(struct skin_element* element, const char** document)
|
||||||
{
|
{
|
||||||
const char* cursor = *document + 1;
|
const char* cursor = *document + 1;
|
||||||
const char* bookmark;
|
const char* bookmark;
|
||||||
char *open_square_bracket = NULL;
|
const char *open_square_bracket = NULL;
|
||||||
|
|
||||||
char tag_name[MAX_TAG_LENGTH];
|
char tag_name[MAX_TAG_LENGTH];
|
||||||
char* tag_args;
|
const char* tag_args;
|
||||||
const struct tag_info *tag;
|
const struct tag_info *tag;
|
||||||
struct skin_tag_parameter* params = NULL;
|
struct skin_tag_parameter* params = NULL;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue