summaryrefslogtreecommitdiff
path: root/tools/scramble.c
diff options
context:
space:
mode:
authorJames Buren <braewoods+rb@braewoods.net>2021-04-06 21:56:55 -0500
committerSolomon Peachy <pizza@shaftnet.org>2021-04-23 01:01:31 +0000
commitf968d6032ab32db179a7617158078e488b1f0748 (patch)
tree2bc71f83b81ad7c08c0cc26ebe65c80b398856be /tools/scramble.c
parent79d1b68fe29a4963fb17ef47426b6df3847212c1 (diff)
downloadrockbox-f968d6032ab32db179a7617158078e488b1f0748.tar.gz
rockbox-f968d6032ab32db179a7617158078e488b1f0748.zip
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
Diffstat (limited to 'tools/scramble.c')
-rw-r--r--tools/scramble.c32
1 files changed, 16 insertions, 16 deletions
diff --git a/tools/scramble.c b/tools/scramble.c
index a529caea03..24ed4ba0e6 100644
--- a/tools/scramble.c
+++ b/tools/scramble.c
@@ -663,22 +663,22 @@ static int iaudio_encode(char *iname, char *oname, char *idstring)
663 663
664static int ipod_encode(char *iname, char *oname, int fw_ver, bool fake_rsrc) 664static int ipod_encode(char *iname, char *oname, int fw_ver, bool fake_rsrc)
665{ 665{
666 static const char *apple_stop_sign = "{{~~ /-----\\ "\ 666 static const char apple_stop_sign[] = "{{~~ /-----\\ "\
667 "{{~~ / \\ "\ 667 "{{~~ / \\ "\
668 "{{~~| | "\ 668 "{{~~| | "\
669 "{{~~| S T O P | "\ 669 "{{~~| S T O P | "\
670 "{{~~| | "\ 670 "{{~~| | "\
671 "{{~~ \\ / "\ 671 "{{~~ \\ / "\
672 "{{~~ \\-----/ "\ 672 "{{~~ \\-----/ "\
673 "Copyright(C) 200"\ 673 "Copyright(C) 200"\
674 "1 Apple Computer"\ 674 "1 Apple Computer"\
675 ", Inc.----------"\ 675 ", Inc.----------"\
676 "----------------"\ 676 "----------------"\
677 "----------------"\ 677 "----------------"\
678 "----------------"\ 678 "----------------"\
679 "----------------"\ 679 "----------------"\
680 "----------------"\ 680 "----------------"\
681 "---------------"; 681 "---------------";
682 size_t len; 682 size_t len;
683 int length; 683 int length;
684 int rsrclength; 684 int rsrclength;