Fix printf arg mismatch.
Fixes https://gitlab.com/kicad/code/kicad/issues/5933
This commit is contained in:
parent
afe5d9ae05
commit
1fc94c7a2d
|
@ -316,7 +316,7 @@ bool test::DRC_TEST_PROVIDER_DIFF_PAIR_COUPLING::Run()
|
|||
forEachGeometryItem( { PCB_TRACE_T, PCB_VIA_T, PCB_ARC_T },
|
||||
LSET::AllCuMask(), evaluateDpConstraints );
|
||||
|
||||
drc_dbg(10, "dp rule matches %d\n", dpRuleMatches.size() );
|
||||
drc_dbg( 10, "dp rule matches %d\n", (int) dpRuleMatches.size() );
|
||||
|
||||
|
||||
DRC_RTREE copperTree;
|
||||
|
|
Loading…
Reference in New Issue