mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-27 15:56:18 -04:00
ipodpatcher: fix warning for apple stop sign constant
Convert both instances of the apple stop sign constant to char array instances. This ensures sizeof will work as expected when applied to the constant. Change-Id: I8599f7b0a00031e944e654b12a0bc59309926807
This commit is contained in:
parent
79d1b68fe2
commit
f968d6032a
2 changed files with 32 additions and 32 deletions
|
|
@ -53,7 +53,7 @@ int ipod_verbose = 0;
|
||||||
|
|
||||||
|
|
||||||
/* The following string appears at the start of the firmware partition */
|
/* The following string appears at the start of the firmware partition */
|
||||||
static const char *apple_stop_sign = "{{~~ /-----\\ "\
|
static const char apple_stop_sign[] = "{{~~ /-----\\ "\
|
||||||
"{{~~ / \\ "\
|
"{{~~ / \\ "\
|
||||||
"{{~~| | "\
|
"{{~~| | "\
|
||||||
"{{~~| S T O P | "\
|
"{{~~| S T O P | "\
|
||||||
|
|
|
||||||
|
|
@ -663,7 +663,7 @@ static int iaudio_encode(char *iname, char *oname, char *idstring)
|
||||||
|
|
||||||
static int ipod_encode(char *iname, char *oname, int fw_ver, bool fake_rsrc)
|
static int ipod_encode(char *iname, char *oname, int fw_ver, bool fake_rsrc)
|
||||||
{
|
{
|
||||||
static const char *apple_stop_sign = "{{~~ /-----\\ "\
|
static const char apple_stop_sign[] = "{{~~ /-----\\ "\
|
||||||
"{{~~ / \\ "\
|
"{{~~ / \\ "\
|
||||||
"{{~~| | "\
|
"{{~~| | "\
|
||||||
"{{~~| S T O P | "\
|
"{{~~| S T O P | "\
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue