From 5816ea27e9435d7f22f0750483bf791d470dec5b Mon Sep 17 00:00:00 2001 From: Tim Wojtulewicz Date: Fri, 14 Aug 2020 14:01:16 -0700 Subject: [PATCH] Fix compiler warning from missing namepsace qualification --- src/strings.bif | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/strings.bif b/src/strings.bif index aeec22dc4b..94b505eeef 100644 --- a/src/strings.bif +++ b/src/strings.bif @@ -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. 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; }