Fix linter issues

This commit is contained in:
Jonas Plum
2023-05-21 13:52:26 +02:00
parent c96e2ebe06
commit 25b9d693af
11 changed files with 16 additions and 35 deletions

View File

@@ -33,7 +33,7 @@ type WriterAtBuffer struct {
bytes.Buffer
}
func (fw WriterAtBuffer) WriteAt(p []byte, offset int64) (n int, err error) {
func (fw WriterAtBuffer) WriteAt(p []byte, _ int64) (n int, err error) {
return fw.Write(p)
}