From 012d3f098fd57aef22e1013393d65e94abc24be1 Mon Sep 17 00:00:00 2001 From: Wayne Stambaugh Date: Mon, 10 Jun 2024 10:56:02 -0400 Subject: [PATCH] Fix build error caused by commit 82c2bda52bcaff1253de997dd5db791bec0bb034. --- 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 ada70e5d53..6086bfec6c 100644 --- a/pcbnew/pcb_io/altium/altium_pcb.cpp +++ b/pcbnew/pcb_io/altium/altium_pcb.cpp @@ -2003,7 +2003,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 ); }