mirror of
https://github.com/cc65/cc65.git
synced 2025-01-27 09:33:42 +00:00
Increased upper limit of allowed errors before aborting.
This commit is contained in:
parent
00c16d34a4
commit
44e3080ea9
@ -184,7 +184,7 @@ static void IntError (const char* Filename, unsigned LineNo, const char* Msg, va
|
||||
Print (stderr, 1, "Input: %.*s\n", (int) SB_GetLen (Line), SB_GetConstBuf (Line));
|
||||
}
|
||||
++ErrorCount;
|
||||
if (ErrorCount > 10) {
|
||||
if (ErrorCount > 20) {
|
||||
Fatal ("Too many errors");
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user