1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Dave Chapman 2007-06-08 15:24:47 +00:00
parent 4f711da546
commit 6e314e5e98

View file

@ -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);