fix a minor compil warning.

This commit is contained in:
jean-pierre charras 2018-03-26 08:24:09 +02:00
parent a8b1c2a8f2
commit 1cd64778d6
1 changed files with 1 additions and 1 deletions

View File

@ -322,7 +322,7 @@ void CVPCB_MAINFRAME::ToFirstNA( wxCommandEvent& event )
int candidate = -1;
for( int jj = first_selected+1; jj < m_netlist.GetCount(); jj++ )
for( int jj = first_selected+1; jj < (int)m_netlist.GetCount(); jj++ )
{
if( m_netlist.GetComponent( jj )->GetFPID().empty() )
{