mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-10-29 17:33:09 +00: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>
|
Sun Apr 19 17:46:22 BST 2009 Daniel P. Berrange <berrange@redhat.com>
|
||||||
|
|
||||||
* mingw32-libvirt.spec.in: Added new virt-xml-validate tool
|
* mingw32-libvirt.spec.in: Added new virt-xml-validate tool
|
||||||
|
@ -139,7 +139,7 @@ brAddBridge(brControl *ctl,
|
|||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
int brAddBridge (brControl *ctl ATTRIBUTE_UNUSED,
|
int brAddBridge (brControl *ctl ATTRIBUTE_UNUSED,
|
||||||
char **name ATTRIBUTE_UNUSED)
|
const char *name ATTRIBUTE_UNUSED)
|
||||||
{
|
{
|
||||||
return EINVAL;
|
return EINVAL;
|
||||||
}
|
}
|
||||||
@ -175,8 +175,8 @@ brHasBridge(brControl *ctl,
|
|||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
int
|
int
|
||||||
brHasBridge(brControl *ctl,
|
brHasBridge(brControl *ctl ATTRIBUTE_UNUSED,
|
||||||
const char *name)
|
const char *name ATTRIBUTE_UNUSED)
|
||||||
{
|
{
|
||||||
return EINVAL;
|
return EINVAL;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user