summaryrefslogtreecommitdiff
path: root/rbutil
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2007-06-08 15:24:47 +0000
committerDave Chapman <dave@dchapman.com>2007-06-08 15:24:47 +0000
commit6e314e5e985ff1c644fc220041b95af0f0aa1065 (patch)
tree688b7410baf19d6286d91c41edd7965de5262d48 /rbutil
parent4f711da546ce74a86cfb6bdb6fb5205f4d7c45cb (diff)
downloadrockbox-6e314e5e985ff1c644fc220041b95af0f0aa1065.tar.gz
rockbox-6e314e5e985ff1c644fc220041b95af0f0aa1065.zip
Fix typo in error message - thanks to Bryan Childs for spotting
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13593 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'rbutil')
-rw-r--r--rbutil/ipodpatcher/ipodpatcher.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rbutil/ipodpatcher/ipodpatcher.c b/rbutil/ipodpatcher/ipodpatcher.c
index 4aae029fa2..96c022bcb7 100644
--- a/rbutil/ipodpatcher/ipodpatcher.c
+++ b/rbutil/ipodpatcher/ipodpatcher.c
@@ -525,7 +525,7 @@ int add_bootloader(struct ipod_t* ipod, char* filename, int type)
525 525
526 bootloader_buf = malloc(length); 526 bootloader_buf = malloc(length);
527 if (bootloader_buf == NULL) { 527 if (bootloader_buf == NULL) {
528 fprintf(stderr,"[ERR] Can not allocate memory for bootlaoder\n"); 528 fprintf(stderr,"[ERR] Can not allocate memory for bootloader\n");
529 } 529 }
530 /* Now read our bootloader - we need to check it before modifying the partition*/ 530 /* Now read our bootloader - we need to check it before modifying the partition*/
531 n = read(infile,bootloader_buf,length); 531 n = read(infile,bootloader_buf,length);