mirror of
https://github.com/zeek/zeek.git
synced 2025-10-08 01:28:20 +00:00
additional tweaks to address some compiler warnings
This commit is contained in:
parent
693fc14eb2
commit
57fdef573c
6 changed files with 14 additions and 11 deletions
|
@ -807,7 +807,7 @@ const ZAMStmt ZAMCompiler::LoopOverTable(const ForStmt* f, const NameExpr* val)
|
|||
|
||||
auto aux = new ZInstAux(0);
|
||||
|
||||
for ( auto i = 0U; i < loop_vars->length(); ++i )
|
||||
for ( auto i = 0; i < loop_vars->length(); ++i )
|
||||
{
|
||||
auto id = (*loop_vars)[i];
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue