diff options
| author | Dave Chapman <dave@dchapman.com> | 2007-06-08 15:24:47 +0000 |
|---|---|---|
| committer | Dave Chapman <dave@dchapman.com> | 2007-06-08 15:24:47 +0000 |
| commit | 6e314e5e985ff1c644fc220041b95af0f0aa1065 (patch) | |
| tree | 688b7410baf19d6286d91c41edd7965de5262d48 | |
| parent | 4f711da546ce74a86cfb6bdb6fb5205f4d7c45cb (diff) | |
| download | rockbox-6e314e5e985ff1c644fc220041b95af0f0aa1065.zip rockbox-6e314e5e985ff1c644fc220041b95af0f0aa1065.tar.gz rockbox-6e314e5e985ff1c644fc220041b95af0f0aa1065.tar.bz2 rockbox-6e314e5e985ff1c644fc220041b95af0f0aa1065.tar.xz | |
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
| -rw-r--r-- | rbutil/ipodpatcher/ipodpatcher.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rbutil/ipodpatcher/ipodpatcher.c b/rbutil/ipodpatcher/ipodpatcher.c index 4aae029..96c022b 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) bootloader_buf = malloc(length); if (bootloader_buf == NULL) { - fprintf(stderr,"[ERR] Can not allocate memory for bootlaoder\n"); + fprintf(stderr,"[ERR] Can not allocate memory for bootloader\n"); } /* Now read our bootloader - we need to check it before modifying the partition*/ n = read(infile,bootloader_buf,length); |