1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-10 23:29:05 +00:00

Fixed an error in the last change: Arguments for option -W were not passed

correctly to the compiler.


git-svn-id: svn://svn.cc65.org/cc65/trunk@5007 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2011-05-01 17:58:45 +00:00
parent 417b14432c
commit 845ad64633

View File

@ -1360,7 +1360,7 @@ int main (int argc, char* argv [])
OptLdArgs (Arg, GetArg (&I, 3));
} else {
/* Anything else: Suppress warnings (compiler) */
CmdAddArg2 (&CC65, "-W", GetArg (&I, 3));
CmdAddArg2 (&CC65, "-W", GetArg (&I, 2));
}
break;