Update main.c

This commit is contained in:
Stefan 2017-05-28 16:17:34 +02:00 committed by GitHub
parent 49e22f566f
commit 80feb80168
1 changed files with 3 additions and 2 deletions

View File

@ -62,7 +62,7 @@ static void Usage (void)
{
fprintf (stderr, "Usage: %s <operation ...> 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;