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:
parent
9467d1b30d
commit
107d0eb921
1 changed files with 2 additions and 2 deletions
|
|
@ -32,7 +32,7 @@ void usage(void)
|
||||||
printf("options:\n"
|
printf("options:\n"
|
||||||
"\t-fm Archos FM recorder format\n"
|
"\t-fm Archos FM recorder format\n"
|
||||||
"\t-v2 Archos V2 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-iriver iRiver format\n"
|
||||||
"\t-gigabeat Toshiba Gigabeat format\n"
|
"\t-gigabeat Toshiba Gigabeat format\n"
|
||||||
"\t-iaudio iAudio format\n"
|
"\t-iaudio iAudio format\n"
|
||||||
|
|
@ -91,7 +91,7 @@ int main (int argc, char** argv)
|
||||||
/* open file and check size */
|
/* open file and check size */
|
||||||
file = fopen(iname,"rb");
|
file = fopen(iname,"rb");
|
||||||
if (!file) {
|
if (!file) {
|
||||||
perror(oname);
|
perror(iname);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
fseek(file,0,SEEK_END);
|
fseek(file,0,SEEK_END);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue