[#1418] blobstor: Do not use pointers as parameters

Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
This commit is contained in:
Pavel Karpy 2022-05-23 17:15:16 +03:00 committed by Pavel Karpy
parent 14366bbd89
commit b0c7b7851a
3 changed files with 12 additions and 9 deletions

View file

@ -24,7 +24,7 @@ func (p *GetPrm) SetAddress(addr oid.Address) {
}
// Object returns binary representation of the requested object.
func (p *GetRes) Object() []byte {
func (p GetRes) Object() []byte {
return p.obj
}