1
0
Fork 0
forked from len0rd/rockbox

Correct an error message

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18837 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dave Chapman 2008-10-19 15:10:49 +00:00
parent 08c41d42bb
commit e18809bdc5

View file

@ -391,7 +391,7 @@ int main(int argc, char* argv[])
buf = load_file(infile, &len); buf = load_file(infile, &len);
if (buf == NULL) { if (buf == NULL) {
fprintf(stderr,"[ERR] Could not load bootloader file\n"); fprintf(stderr,"[ERR] Could not load %s\n",infile);
return 1; return 1;
} }