From: Stefan Date: Sun, 28 May 2017 14:17:34 +0000 (+0200) Subject: Update main.c X-Git-Tag: V2.17~128^2 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=80feb80168eccc8b8097b9150c13deb848a8eb45;p=cc65 Update main.c --- diff --git a/src/ar65/main.c b/src/ar65/main.c index 9fb5d6cf8..48561027f 100644 --- a/src/ar65/main.c +++ b/src/ar65/main.c @@ -62,7 +62,7 @@ static void Usage (void) { fprintf (stderr, "Usage: %s lib file|module ...\n" "Operations are some of:\n" - "\ta\tAdd modules\n" + "\tr\tAdd modules\n" "\td\tDelete modules\n" "\tt\tList library table\n" "\tv\tIncrease verbosity (put before other operation)\n" @@ -96,7 +96,8 @@ int main (int argc, char* argv []) switch (Arg [0]) { - case 'a': + case 'r': /* POSIX.2 */ + case 'a': /* staying compatible */ AddObjFiles (ArgCount - I - 1, &ArgVec[I+1]); break;