1
0
Fork 0
forked from len0rd/rockbox

Correct the usage information for the Archos Multimedia format (this looks like a copy-and-paste error from scamble), plus fix an error message

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11981 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dave Chapman 2007-01-11 00:35:06 +00:00
parent 9467d1b30d
commit 107d0eb921

View file

@ -32,7 +32,7 @@ void usage(void)
printf("options:\n"
"\t-fm Archos FM recorder format\n"
"\t-v2 Archos V2 recorder format\n"
"\t-mm=X Archos Multimedia format (X values: A=JBMM, B=AV1xx, C=AV3xx)\n"
"\t-mm Archos Multimedia format\n"
"\t-iriver iRiver format\n"
"\t-gigabeat Toshiba Gigabeat format\n"
"\t-iaudio iAudio format\n"
@ -91,7 +91,7 @@ int main (int argc, char** argv)
/* open file and check size */
file = fopen(iname,"rb");
if (!file) {
perror(oname);
perror(iname);
return -1;
}
fseek(file,0,SEEK_END);