aboutsummaryrefslogtreecommitdiffstats
path: root/vm
diff options
context:
space:
mode:
authorTaras Madan <tarasmadan@google.com>2025-07-15 16:50:26 +0200
committerTaras Madan <tarasmadan@google.com>2025-07-17 08:31:25 +0000
commit94243f0c885f79147a0c19cb2e11dae119683f81 (patch)
tree8cd43f579959083313fbcc97e90c9a1b67cb9087 /vm
parentabd11cfd08430ec5f9d2c6dbd0e0f798816922d1 (diff)
all: manual linter fixes
1. recover the removed comment 2. unnecessary leading newline 3. unnecessary brackets 4. restore dropped "..." 5. use bytes.Equal instead of conversion to string
Diffstat (limited to 'vm')
-rw-r--r--vm/proxyapp/proxyappclient.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm/proxyapp/proxyappclient.go b/vm/proxyapp/proxyappclient.go
index cbd731550..dce7b623e 100644
--- a/vm/proxyapp/proxyappclient.go
+++ b/vm/proxyapp/proxyappclient.go
@@ -591,7 +591,7 @@ type stdInOutCloser struct {
func clientErrorf(writer io.Writer) func(fmt string, s ...interface{}) {
return func(f string, s ...interface{}) {
- fmt.Fprintf(writer, f, s)
+ fmt.Fprintf(writer, f, s...)
writer.Write([]byte("\nSYZFAIL: proxy app plugin error\n"))
}
}