mirror of
https://github.com/zeek/zeek.git
synced 2025-10-05 16:18:19 +00:00
Fix gcc compile warnings.
This commit is contained in:
parent
6d868d83be
commit
07cba950b8
4 changed files with 11 additions and 9 deletions
|
@ -94,7 +94,7 @@ void EventHandler::Call(val_list* vl, bool no_remote)
|
|||
msg.emplace_back(Name());
|
||||
bool valid_args = true;
|
||||
|
||||
for ( auto i = 0u; i < vl->length(); ++i )
|
||||
for ( auto i = 0; i < vl->length(); ++i )
|
||||
{
|
||||
auto opt_data = comm::val_to_data((*vl)[i]);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue