Fix build error caused by commit 82c2bda52b.

This commit is contained in:
Wayne Stambaugh 2024-06-10 10:56:02 -04:00
parent 2e38fa84bf
commit 012d3f098f
1 changed files with 1 additions and 1 deletions

View File

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