Fix one more warning

This commit is contained in:
Jon Evans 2020-02-20 19:38:32 -05:00
parent cd86dd516c
commit affdaa8c33
1 changed files with 1 additions and 1 deletions

View File

@ -278,7 +278,7 @@ bool DIALOG_FOOTPRINT_BOARD_EDITOR::TransferDataToWindow()
wxString path = "/";
// Exclude the last path step (it's the component)
for( int i = 0; i + 1 < m_footprint->GetPath().size(); ++i )
for( size_t i = 0; i + 1 < m_footprint->GetPath().size(); ++i )
{
if( path.length() > 1 )
path += "/";