Fix signed/unsigned mismatch.

Fixes: lp:1836626
* https://bugs.launchpad.net/kicad/+bug/1836626
This commit is contained in:
Jeff Young 2019-07-15 20:00:46 +01:00
parent 58ca5b71a9
commit 16f672a9bd
1 changed files with 1 additions and 1 deletions

View File

@ -447,7 +447,7 @@ void EDA_DRAW_FRAME::PopTool( const std::string& actionName )
// frame but not processed until the mouse is back in the Schematic frame), so make sure
// we're popping the right stack frame.
for( size_t i = m_toolStack.size() - 1; i >= 0; --i )
for( int i = m_toolStack.size() - 1; i >= 0; --i )
{
if( m_toolStack[ i ] == actionName )
{