From 556ce5b2c8e37c9f20afc16f030860aad04c5f9f Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Mon, 5 Jul 2021 11:19:07 +0200 Subject: go fmt --- plugins/base/search.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/base/search.go') diff --git a/plugins/base/search.go b/plugins/base/search.go index 4d8cef8..fd85f88 100644 --- a/plugins/base/search.go +++ b/plugins/base/search.go @@ -87,7 +87,7 @@ func splitSearchTokens(buf []byte, eof bool) (int, []byte, error) { terminator int quoted bool ) - if colon + 1 < len(buf) && buf[colon+1] == byte('"') { + if colon+1 < len(buf) && buf[colon+1] == byte('"') { terminator = bytes.IndexByte(buf[colon+2:], byte('"')) terminator += colon + 3 quoted = true -- cgit v1.2.3-59-g8ed1b