Skip to content

Commit

Permalink
remove unneeded type conversion (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Cooper authored Feb 29, 2020
1 parent a8ec173 commit 2b7b37f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conn.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ func (c *Conn) cmd(t *Tube, ts *TubeSet, body []byte, op string, args ...interfa
if body != nil {
args = append(args, len(body))
}
c.printLine(string(op), args...)
c.printLine(op, args...)
if body != nil {
c.c.W.Write(body)
c.c.W.Write(crnl)
Expand Down

0 comments on commit 2b7b37f

Please sign in to comment.