From 8528151a2b10b405e563b92d38442bc1ca72133c Mon Sep 17 00:00:00 2001 From: jean-pierre charras <jp.charras@wanadoo.fr> Date: Fri, 17 Jan 2025 11:54:14 +0100 Subject: [PATCH] Fix incorrect format for a message --- pcbnew/drc/drc_test_provider_diff_pair_coupling.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcbnew/drc/drc_test_provider_diff_pair_coupling.cpp b/pcbnew/drc/drc_test_provider_diff_pair_coupling.cpp index ff56329309..3c42f1432d 100644 --- a/pcbnew/drc/drc_test_provider_diff_pair_coupling.cpp +++ b/pcbnew/drc/drc_test_provider_diff_pair_coupling.cpp @@ -565,7 +565,7 @@ bool test::DRC_TEST_PROVIDER_DIFF_PAIR_COUPLING::Run() drc_dbg( 10, wxT( " len %d gap %ld l %d\n" ), length, - dp.computedGap, + (long int) dp.computedGap, (int) dp.parentP->GetLayer() ); if( key.gapConstraint )