forked from TrueCloudLab/restic
Use rclone.wrappedConn by pointer
This shaves a kilobyte off the Linux binary by not generating a non-pointer interface implementation.
This commit is contained in:
parent
5571c3f7fd
commit
fa3eed1998
1 changed files with 4 additions and 4 deletions
|
@ -104,16 +104,16 @@ type wrappedConn struct {
|
|||
io.Writer
|
||||
}
|
||||
|
||||
func (c wrappedConn) Read(p []byte) (int, error) {
|
||||
func (c *wrappedConn) Read(p []byte) (int, error) {
|
||||
return c.Reader.Read(p)
|
||||
}
|
||||
|
||||
func (c wrappedConn) Write(p []byte) (int, error) {
|
||||
func (c *wrappedConn) Write(p []byte) (int, error) {
|
||||
return c.Writer.Write(p)
|
||||
}
|
||||
|
||||
func wrapConn(c *StdioConn, lim limiter.Limiter) wrappedConn {
|
||||
wc := wrappedConn{
|
||||
func wrapConn(c *StdioConn, lim limiter.Limiter) *wrappedConn {
|
||||
wc := &wrappedConn{
|
||||
StdioConn: c,
|
||||
Reader: c,
|
||||
Writer: c,
|
||||
|
|
Loading…
Reference in a new issue