From 107d0eb921adde77a8928b61a2de3e97ede7ef66 Mon Sep 17 00:00:00 2001 From: Dave Chapman Date: Thu, 11 Jan 2007 00:35:06 +0000 Subject: [PATCH] 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 --- tools/descramble.c | 4 ++-- 1 file 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) 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);