summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rbutil/ipodpatcher/ipodpatcher.c32
-rw-r--r--tools/scramble.c32
2 files changed, 32 insertions, 32 deletions
diff --git a/rbutil/ipodpatcher/ipodpatcher.c b/rbutil/ipodpatcher/ipodpatcher.c
index 6df9060bdc..e047e52abe 100644
--- a/rbutil/ipodpatcher/ipodpatcher.c
+++ b/rbutil/ipodpatcher/ipodpatcher.c
@@ -53,22 +53,22 @@ int ipod_verbose = 0;
53 53
54 54
55/* The following string appears at the start of the firmware partition */ 55/* The following string appears at the start of the firmware partition */
56static const char *apple_stop_sign = "{{~~ /-----\\ "\ 56static const char apple_stop_sign[] = "{{~~ /-----\\ "\
57 "{{~~ / \\ "\ 57 "{{~~ / \\ "\
58 "{{~~| | "\ 58 "{{~~| | "\
59 "{{~~| S T O P | "\ 59 "{{~~| S T O P | "\
60 "{{~~| | "\ 60 "{{~~| | "\
61 "{{~~ \\ / "\ 61 "{{~~ \\ / "\
62 "{{~~ \\-----/ "\ 62 "{{~~ \\-----/ "\
63 "Copyright(C) 200"\ 63 "Copyright(C) 200"\
64 "1 Apple Computer"\ 64 "1 Apple Computer"\
65 ", Inc.----------"\ 65 ", Inc.----------"\
66 "----------------"\ 66 "----------------"\
67 "----------------"\ 67 "----------------"\
68 "----------------"\ 68 "----------------"\
69 "----------------"\ 69 "----------------"\
70 "----------------"\ 70 "----------------"\
71 "---------------"; 71 "---------------";
72 72
73/* Windows requires the buffer for disk I/O to be aligned in memory on a 73/* Windows requires the buffer for disk I/O to be aligned in memory on a
74 multiple of the disk volume size - so we use a single global variable 74 multiple of the disk volume size - so we use a single global variable
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;