summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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);