diff options
author | Dave Chapman <dave@dchapman.com> | 2007-11-09 08:37:14 +0000 |
---|---|---|
committer | Dave Chapman <dave@dchapman.com> | 2007-11-09 08:37:14 +0000 |
commit | eaed78555b2168e6471a8d03c0d2814f058e4197 (patch) | |
tree | 513190f911ffcf372ca8ded549da59557a5af5b3 | |
parent | b9dba4f12817f4d1d146def093520aeee78a1c7a (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.c | 4 |
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(§or[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)) { |