rpc: Fix compile error due to potentially unused parameter

connectDBus is only used if HAVE_DBUS is set. Therefore mark
it as potentially unused.
This commit is contained in:
Matthias Bolte 2011-07-12 17:06:16 +02:00
parent b8adfcc60c
commit b253452942
1 changed files with 1 additions and 1 deletions

View File

@ -277,7 +277,7 @@ virNetServerPtr virNetServerNew(size_t min_workers,
size_t max_workers,
size_t max_clients,
const char *mdnsGroupName,
bool connectDBus,
bool connectDBus ATTRIBUTE_UNUSED,
virNetServerClientInitHook clientInitHook)
{
virNetServerPtr srv;