mirror of
https://github.com/cc65/cc65.git
synced 2024-11-16 02:10:52 +00:00
Linux build rejects %llu in ErrorCode
This commit is contained in:
parent
2cb457b85f
commit
f15e9c4159
@ -315,7 +315,7 @@ int main (int argc, char* argv[])
|
|||||||
TotalCycles += Cycles;
|
TotalCycles += Cycles;
|
||||||
if (MaxCycles) {
|
if (MaxCycles) {
|
||||||
if (Cycles > RemainCycles) {
|
if (Cycles > RemainCycles) {
|
||||||
ErrorCode (SIM65_ERROR_TIMEOUT, "Maximum number of cycles (%llu) reached.", MaxCycles);
|
ErrorCode (SIM65_ERROR_TIMEOUT, "Maximum number of cycles reached.");
|
||||||
}
|
}
|
||||||
RemainCycles -= Cycles;
|
RemainCycles -= Cycles;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user