summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2007-11-09 08:37:14 +0000
committerDave Chapman <dave@dchapman.com>2007-11-09 08:37:14 +0000
commiteaed78555b2168e6471a8d03c0d2814f058e4197 (patch)
tree513190f911ffcf372ca8ded549da59557a5af5b3
parentb9dba4f12817f4d1d146def093520aeee78a1c7a (diff)
Swap two messages which were the wrong way round. Thanks to Barry Wardell for spotting.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15549 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--bootloader/main-e200r-installer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bootloader/main-e200r-installer.c b/bootloader/main-e200r-installer.c
index 518f1db87f..b128a3445a 100644
--- a/bootloader/main-e200r-installer.c
+++ b/bootloader/main-e200r-installer.c
@@ -150,7 +150,7 @@ void* main(void)
if (crc32 == PATCHED_CRC32)
{
/* Bootloader already patched */
- printf("Firmware unlocked");
+ printf("Already unlocked");
printf("Proceed to Step 2");
} else if ((crc32 == KNOWN_CRC32) &&
!memcmp(&sector[HACK_OFFSET], knownBytes,
@@ -162,7 +162,7 @@ void* main(void)
ata_write_sectors(IF_MV2(0,)
pinfo->start + START_SECTOR_OF_ROM + ROMSECTOR_TO_HACK,
1 , sector);
- printf("Already unlocked");
+ printf("Firmware unlocked");
printf("Proceed to Step 2");
} else if (is_e200(crc32))
{