mirror of
https://github.com/zeek/zeek.git
synced 2025-10-10 18:48:20 +00:00
Fix compiler warning from missing namepsace qualification
This commit is contained in:
parent
22d1db9d70
commit
5816ea27e9
1 changed files with 1 additions and 1 deletions
|
@ -1190,7 +1190,7 @@ int64_t do_find_str(zeek::StringVal* str, zeek::StringVal* sub, uint64_t start,
|
||||||
// Also don't bother (and return an error) if the end is before the start.
|
// Also don't bother (and return an error) if the end is before the start.
|
||||||
if ( (end != -1 ) && end < start )
|
if ( (end != -1 ) && end < start )
|
||||||
{
|
{
|
||||||
reporter->Error("find_str: end position must be greater than start position");
|
zeek::reporter->Error("find_str: end position must be greater than start position");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue