From 1cd64778d60c5fb5f655e8154976b043cd3c85c0 Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Mon, 26 Mar 2018 08:24:09 +0200 Subject: [PATCH] fix a minor compil warning. --- cvpcb/cvpcb_mainframe.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cvpcb/cvpcb_mainframe.cpp b/cvpcb/cvpcb_mainframe.cpp index daa0ba3326..88735a1a9c 100644 --- a/cvpcb/cvpcb_mainframe.cpp +++ b/cvpcb/cvpcb_mainframe.cpp @@ -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() ) {