mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-05 04:47:40 +03:00
Make linter happy
This commit is contained in:
parent
aa7007a947
commit
beeeba3388
12 changed files with 26 additions and 33 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue