From: Eric Blake Date: Fri, 14 Dec 2012 19:02:10 +0000 (-0700) Subject: build: minor build fixes for BSD X-Git-Tag: v1.0.1~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=70743daeecab01e98f09ed3a16d8652d07e4d747;p=thirdparty%2Flibvirt.git build: minor build fixes for BSD Noticed these while building on FreeBSD. * src/qemu/qemu_monitor.c (qemuMonitorBlockInfoLookup): Rename variable to avoid 'devname' collision. * src/qemu/qemu_driver.c (qemuDomainInterfaceStats): Mark unused variable. --- diff --git a/src/qemu/qemu_driver.c b/src/qemu/qemu_driver.c index 6f0849cf4e..2dd6922956 100644 --- a/src/qemu/qemu_driver.c +++ b/src/qemu/qemu_driver.c @@ -8898,7 +8898,7 @@ cleanup: } #else static int -qemuDomainInterfaceStats(virDomainPtr dom, +qemuDomainInterfaceStats(virDomainPtr dom ATTRIBUTE_UNUSED, const char *path ATTRIBUTE_UNUSED, struct _virDomainInterfaceStats *stats ATTRIBUTE_UNUSED) { diff --git a/src/qemu/qemu_monitor.c b/src/qemu/qemu_monitor.c index 5ad6c15ab3..131e8df358 100644 --- a/src/qemu/qemu_monitor.c +++ b/src/qemu/qemu_monitor.c @@ -1428,16 +1428,16 @@ qemuMonitorGetBlockInfo(qemuMonitorPtr mon) struct qemuDomainDiskInfo * qemuMonitorBlockInfoLookup(virHashTablePtr blockInfo, - const char *devname) + const char *dev) { struct qemuDomainDiskInfo *info; - VIR_DEBUG("blockInfo=%p dev=%s", blockInfo, NULLSTR(devname)); + VIR_DEBUG("blockInfo=%p dev=%s", blockInfo, NULLSTR(dev)); - if (!(info = virHashLookup(blockInfo, devname))) { + if (!(info = virHashLookup(blockInfo, dev))) { virReportError(VIR_ERR_INTERNAL_ERROR, _("cannot find info for device '%s'"), - NULLSTR(devname)); + NULLSTR(dev)); } return info;