Fix printf arg mismatch.

Fixes https://gitlab.com/kicad/code/kicad/issues/5933
This commit is contained in:
Jeff Young 2020-10-09 13:57:34 +01:00
parent afe5d9ae05
commit 1fc94c7a2d
1 changed files with 1 additions and 1 deletions

View File

@ -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;