rados: naming conventions: c_stat -> cStat

Fix up variable names that don't meet Go standards.

Command: gofmt -w -r "c_stat -> cStat" rados/conn.go

Signed-off-by: John Mulligan <jmulligan@redhat.com>
This commit is contained in:
John Mulligan 2021-06-21 16:21:29 -04:00 committed by John Mulligan
parent 9619de1d84
commit 4c12ff0fda

View File

@ -179,16 +179,16 @@ func (c *Conn) GetClusterStats() (stat ClusterStat, err error) {
if err := c.ensure_connected(); err != nil { if err := c.ensure_connected(); err != nil {
return ClusterStat{}, err return ClusterStat{}, err
} }
c_stat := C.struct_rados_cluster_stat_t{} cStat := C.struct_rados_cluster_stat_t{}
ret := C.rados_cluster_stat(c.cluster, &c_stat) ret := C.rados_cluster_stat(c.cluster, &cStat)
if ret < 0 { if ret < 0 {
return ClusterStat{}, getError(ret) return ClusterStat{}, getError(ret)
} }
return ClusterStat{ return ClusterStat{
Kb: uint64(c_stat.kb), Kb: uint64(cStat.kb),
Kb_used: uint64(c_stat.kb_used), Kb_used: uint64(cStat.kb_used),
Kb_avail: uint64(c_stat.kb_avail), Kb_avail: uint64(cStat.kb_avail),
Num_objects: uint64(c_stat.num_objects), Num_objects: uint64(cStat.num_objects),
}, nil }, nil
} }