Fix minor signed/unsigned comparison

This commit is contained in:
Seth Hillbrand 2018-04-30 11:15:29 -07:00
parent 12487e14ab
commit b2b70ed7e3
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ DIALOG_GET_FOOTPRINT::DIALOG_GET_FOOTPRINT( PCB_BASE_FRAME* parent, bool aShowBr
m_selectByBrowser = false;
m_selectionIsKeyword = false;
for( int ii = 0; ii < s_HistoryList.size(); ++ii )
for( size_t ii = 0; ii < s_HistoryList.size(); ++ii )
{
LIB_ID fpid( s_HistoryList[ ii ] );
if( m_frame->CheckFootprint( fpid ) )