mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-11 09:17:52 +03:00
* src/bridge.c: fix a compilation breakage raised by Anton Protopopov
daniel
This commit is contained in:
parent
fd9a55254f
commit
943a2f2b60
@ -1,3 +1,7 @@
|
||||
Mon Apr 20 11:06:20 CEST 2009 Daniel Veillard <veillard@redhat.com>
|
||||
|
||||
* src/bridge.c: fix a compilation breakage raised by Anton Protopopov
|
||||
|
||||
Sun Apr 19 17:46:22 BST 2009 Daniel P. Berrange <berrange@redhat.com>
|
||||
|
||||
* mingw32-libvirt.spec.in: Added new virt-xml-validate tool
|
||||
|
@ -139,7 +139,7 @@ brAddBridge(brControl *ctl,
|
||||
}
|
||||
#else
|
||||
int brAddBridge (brControl *ctl ATTRIBUTE_UNUSED,
|
||||
char **name ATTRIBUTE_UNUSED)
|
||||
const char *name ATTRIBUTE_UNUSED)
|
||||
{
|
||||
return EINVAL;
|
||||
}
|
||||
@ -175,8 +175,8 @@ brHasBridge(brControl *ctl,
|
||||
}
|
||||
#else
|
||||
int
|
||||
brHasBridge(brControl *ctl,
|
||||
const char *name)
|
||||
brHasBridge(brControl *ctl ATTRIBUTE_UNUSED,
|
||||
const char *name ATTRIBUTE_UNUSED)
|
||||
{
|
||||
return EINVAL;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user