Make linter happy

This commit is contained in:
世界 2022-06-28 22:16:48 +08:00
parent aa7007a947
commit beeeba3388
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
12 changed files with 26 additions and 33 deletions

View file

@ -158,11 +158,11 @@ func (b *Buffer) WriteRandom(size int) []byte {
return buffer
}
func (b *Buffer) WriteByte(byte byte) error {
func (b *Buffer) WriteByte(d byte) error {
if b.IsFull() {
return io.ErrShortBuffer
}
b.data[b.end] = byte
b.data[b.end] = d
b.end++
return nil
}