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:
James Buren 2021-04-06 21:56:55 -05:00 committed by Solomon Peachy
parent 79d1b68fe2
commit f968d6032a
2 changed files with 32 additions and 32 deletions

View file

@ -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 | "\

View file

@ -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 | "\