summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2007-01-11 00:35:06 +0000
committerDave Chapman <dave@dchapman.com>2007-01-11 00:35:06 +0000
commit107d0eb921adde77a8928b61a2de3e97ede7ef66 (patch)
treefec780111b764b045aa88c509f1aa3bf3e0b263c
parent9467d1b30de8c0b25cde1af27af705c8e41faef0 (diff)
downloadrockbox-107d0eb921adde77a8928b61a2de3e97ede7ef66.tar.gz
rockbox-107d0eb921adde77a8928b61a2de3e97ede7ef66.zip
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
-rw-r--r--tools/descramble.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/descramble.c b/tools/descramble.c
index bfcf7062f7..c993c9f25e 100644
--- a/tools/descramble.c
+++ b/tools/descramble.c
@@ -32,7 +32,7 @@ void usage(void)
32 printf("options:\n" 32 printf("options:\n"
33 "\t-fm Archos FM recorder format\n" 33 "\t-fm Archos FM recorder format\n"
34 "\t-v2 Archos V2 recorder format\n" 34 "\t-v2 Archos V2 recorder format\n"
35 "\t-mm=X Archos Multimedia format (X values: A=JBMM, B=AV1xx, C=AV3xx)\n" 35 "\t-mm Archos Multimedia format\n"
36 "\t-iriver iRiver format\n" 36 "\t-iriver iRiver format\n"
37 "\t-gigabeat Toshiba Gigabeat format\n" 37 "\t-gigabeat Toshiba Gigabeat format\n"
38 "\t-iaudio iAudio format\n" 38 "\t-iaudio iAudio format\n"
@@ -91,7 +91,7 @@ int main (int argc, char** argv)
91 /* open file and check size */ 91 /* open file and check size */
92 file = fopen(iname,"rb"); 92 file = fopen(iname,"rb");
93 if (!file) { 93 if (!file) {
94 perror(oname); 94 perror(iname);
95 return -1; 95 return -1;
96 } 96 }
97 fseek(file,0,SEEK_END); 97 fseek(file,0,SEEK_END);