Fix build error caused by commit 82c2bda52b.

(cherry picked from commit 012d3f098f)

Co-authored-by: Wayne Stambaugh <stambaughw@gmail.com>
This commit is contained in:
dsa-t 2024-06-10 15:02:21 +00:00
parent b34dbf58c5
commit 695505fc71
1 changed files with 1 additions and 1 deletions

View File

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