From: Peter Krempa <[email protected]> Too many extra lines were added and the virHypervisorDriver entry was missing a trailing comma which would require patch adding an API to add it.
Fixes: 7191d2932601ed500ad02de95dee05d622860584 Signed-off-by: Peter Krempa <[email protected]> --- src/qemu/qemu_driver.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/qemu/qemu_driver.c b/src/qemu/qemu_driver.c index b4cc09c81a..6f8025be53 100644 --- a/src/qemu/qemu_driver.c +++ b/src/qemu/qemu_driver.c @@ -20930,8 +20930,6 @@ qemuDomainDelThrottleGroup(virDomainPtr dom, } - - static int qemuDomainAnnounceInterface(virDomainPtr dom, const char *device, @@ -21262,7 +21260,7 @@ static virHypervisorDriver qemuHypervisorDriver = { .domainSetAutostartOnce = qemuDomainSetAutostartOnce, /* 11.2.0 */ .domainSetThrottleGroup = qemuDomainSetThrottleGroup, /* 11.2.0 */ .domainDelThrottleGroup = qemuDomainDelThrottleGroup, /* 11.2.0 */ - .domainAnnounceInterface = qemuDomainAnnounceInterface /* 12.5.0 */ + .domainAnnounceInterface = qemuDomainAnnounceInterface, /* 12.5.0 */ }; -- 2.54.0
