mirror of
https://github.com/TomHarte/CLK.git
synced 2025-02-27 15:29:34 +00:00
Resolve type warning.
This commit is contained in:
parent
e6505dc985
commit
7f423e39ed
@ -63,7 +63,7 @@ struct Chipset {
|
||||
if(capturedAllBusActivity) {
|
||||
for(const auto &transaction: transactions) {
|
||||
if(transaction.type != TransactionType::SkippedSlot && transaction.type != TransactionType::WriteFromPipeline) {
|
||||
XCTAssert(false, "Unexpected transaction found at index %d: %s", index, transaction.to_string().c_str());
|
||||
XCTAssert(false, "Unexpected transaction found at index %lu: %s", (unsigned long)index, transaction.to_string().c_str());
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user