From cc8a0037e06b6def4c24b230a1057e635046192e Mon Sep 17 00:00:00 2001 From: Leonard Lyubich Date: Wed, 1 Dec 2021 17:22:06 +0300 Subject: [PATCH] [#979] adm/subnet: Fix print out of subnet info in `get` cmd Signed-off-by: Leonard Lyubich --- cmd/neofs-adm/internal/modules/morph/subnet.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/neofs-adm/internal/modules/morph/subnet.go b/cmd/neofs-adm/internal/modules/morph/subnet.go index 7eada053d..ff82045a4 100644 --- a/cmd/neofs-adm/internal/modules/morph/subnet.go +++ b/cmd/neofs-adm/internal/modules/morph/subnet.go @@ -367,7 +367,7 @@ var cmdSubnetGet = &cobra.Command{ info.ReadOwner(&ownerID) - cmd.Printf("Owner: %s\n", ownerID) + cmd.Printf("Owner: %s\n", &ownerID) return nil },