mirror of https://gitee.com/openkylin/libvirt.git
xenapi: Fix build after const correctnes changes
In commit d24677090f
the header of one of
the post parse callbacks was changed, but the function used as the
callback in the xenapi driver wasn't adapted. This resulted into:
CC xenapi/libvirt_driver_xenapi_la-xenapi_utils.lo
xenapi/xenapi_driver.c:63:5: error: initialization from incompatible pointer type [-Werror]
xenapi/xenapi_driver.c:63:5: error: (near initialization for 'xenapiDomainDefParserConfig.devicesPostParseCallback') [-Werror]
This commit is contained in:
parent
e79810162a
commit
342cd2dd1a
|
@ -45,7 +45,7 @@
|
|||
|
||||
static int
|
||||
xenapiDomainDeviceDefPostParse(virDomainDeviceDefPtr dev,
|
||||
virDomainDefPtr def,
|
||||
const virDomainDef *def,
|
||||
virCapsPtr caps ATTRIBUTE_UNUSED,
|
||||
void *opaque ATTRIBUTE_UNUSED)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue