fix a minor compil warning.
This commit is contained in:
parent
a8b1c2a8f2
commit
1cd64778d6
|
@ -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() )
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue