From: Ján Tomko Date: Tue, 12 Feb 2019 06:48:59 +0000 (+0100) Subject: virsh: rename ret to rc in cmdDomFSInfo X-Git-Tag: v5.1.0-rc1~155 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=44993d312dfaa13b4502307a7157d6605d00d5fc;p=thirdparty%2Flibvirt.git virsh: rename ret to rc in cmdDomFSInfo Leave the 'ret' variable for the current function's return value. Signed-off-by: Ján Tomko --- diff --git a/tools/virsh-domain.c b/tools/virsh-domain.c index 630761e40e..651766cd84 100644 --- a/tools/virsh-domain.c +++ b/tools/virsh-domain.c @@ -13936,7 +13936,7 @@ static bool cmdDomFSInfo(vshControl *ctl, const vshCmd *cmd) { virDomainPtr dom = NULL; - int ret = -1; + int rc = -1; size_t i, j; virDomainFSInfoPtr *info; vshTablePtr table = NULL; @@ -13945,12 +13945,12 @@ cmdDomFSInfo(vshControl *ctl, const vshCmd *cmd) if (!(dom = virshCommandOptDomain(ctl, cmd, NULL))) return false; - ret = virDomainGetFSInfo(dom, &info, 0); - if (ret < 0) { + rc = virDomainGetFSInfo(dom, &info, 0); + if (rc < 0) { vshError(ctl, _("Unable to get filesystem information")); goto cleanup; } - ninfos = ret; + ninfos = rc; if (ninfos == 0) { vshError(ctl, _("No filesystems are mounted in the domain")); @@ -13994,7 +13994,7 @@ cmdDomFSInfo(vshControl *ctl, const vshCmd *cmd) } vshTableFree(table); virshDomainFree(dom); - return ret >= 0; + return rc >= 0; } const vshCmdDef domManagementCmds[] = {