* src/bridge.c: fix a compilation breakage raised by Anton Protopopov

daniel
This commit is contained in:
Daniel Veillard 2009-04-20 09:18:26 +00:00
parent fd9a55254f
commit 943a2f2b60
2 changed files with 7 additions and 3 deletions

View File

@ -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

View File

@ -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;
}