still more nit-squashing

This commit is contained in:
Vern Paxson 2021-09-14 16:04:04 -07:00
parent 10d8c2fe6b
commit 81e8354ada
4 changed files with 9 additions and 8 deletions

View file

@ -689,7 +689,7 @@ void ZAMCompiler::ReMapVar(ID* id, int slot, bro_uint_t inst)
if ( s.scope_end <= static_cast<int>(inst) &&
s.is_managed == is_managed )
{ // It's compatible.
if ( s.scope_end == inst )
if ( s.scope_end == static_cast<int>(inst) )
{ // It ends right on the money.
apt_slot = i;
break;