fmt: apply gofmt updates

Signed-off-by: Noah Watkins <nwatkins@redhat.com>
This commit is contained in:
Noah Watkins 2018-09-17 15:57:31 -07:00
parent 6107372c34
commit 208695a8c1
2 changed files with 13 additions and 13 deletions

View File

@ -567,7 +567,7 @@ func (image *Image) ListLockers() (tag string, lockers []Locker, err error) {
// no locker held on rbd image when either c_clients_len,
// c_cookies_len or c_addrs_len is *0*, so just quickly returned
if int(c_clients_len) == 0 || int(c_cookies_len) == 0 ||
int(c_addrs_len) ==0 {
int(c_addrs_len) == 0 {
lockers = make([]Locker, 0)
return "", lockers, nil
}