Skip to content

Commit

Permalink
Fix missing argument.
Browse files Browse the repository at this point in the history
  • Loading branch information
robertabcd committed Sep 1, 2015
1 parent 152c38c commit 5a976d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion command.go
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ func (cmd *BoolCmd) parseReply(rd *bufio.Reader) error {
cmd.val = bytes.Equal(vv, ok)
return nil
default:
return fmt.Errorf("got %T, wanted int64 or string")
return fmt.Errorf("got %T, wanted int64 or string", v)
}
}

Expand Down

0 comments on commit 5a976d1

Please sign in to comment.