1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-11 11:30:13 +00:00

Fixed ICE with duplicate macro parameters.

This commit is contained in:
acqn 2022-07-05 22:22:49 +08:00
parent e95db437a9
commit 9e3b759540

View File

@ -245,7 +245,7 @@ void AddMacroArg (Macro* M, const char* Arg)
for (I = 0; I < CollCount (&M->FormalArgs); ++I) { for (I = 0; I < CollCount (&M->FormalArgs); ++I) {
if (strcmp (CollAtUnchecked (&M->FormalArgs, I), Arg) == 0) { if (strcmp (CollAtUnchecked (&M->FormalArgs, I), Arg) == 0) {
/* Found */ /* Found */
Error ("Duplicate macro parameter: '%s'", Arg); PPError ("Duplicate macro parameter: '%s'", Arg);
break; break;
} }
} }