From 695505fc71b0d16ed6ca9ca341232911f6cfb6d4 Mon Sep 17 00:00:00 2001 From: dsa-t Date: Mon, 10 Jun 2024 15:02:21 +0000 Subject: [PATCH] Fix build error caused by commit 82c2bda52bcaff1253de997dd5db791bec0bb034. (cherry picked from commit 012d3f098fd57aef22e1013393d65e94abc24be1) Co-authored-by: Wayne Stambaugh --- pcbnew/pcb_io/altium/altium_pcb.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcbnew/pcb_io/altium/altium_pcb.cpp b/pcbnew/pcb_io/altium/altium_pcb.cpp index b2a86e59b1..cb5114e34a 100644 --- a/pcbnew/pcb_io/altium/altium_pcb.cpp +++ b/pcbnew/pcb_io/altium/altium_pcb.cpp @@ -1891,7 +1891,7 @@ void ALTIUM_PCB::ParsePolygons6Data( const ALTIUM_COMPOUND_FILE& aAltiumPcbF if( outline.OutlineCount() != 1 && m_reporter ) { wxString msg; - msg.Printf( _( "Polygon outline count is %d, expected 1.", outline.OutlineCount() ) ); + msg.Printf( _( "Polygon outline count is %d, expected 1." ), outline.OutlineCount() ); m_reporter->Report( msg, RPT_SEVERITY_ERROR ); }