mirror of
https://github.com/libvirt/libvirt.git
synced 2026-08-11 13:34:45 -05:00
* src/bridge.c: fix a compilation breakage raised by Anton Protopopov
daniel
This commit is contained in:
@@ -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
|
||||||
|
|||||||
+3
-3
@@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user