Signed-off-by: Martin Kletzander <mkletzan(a)redhat.com>
---
libvirt-gobject/libvirt-gobject-connection.c | 2 +-
libvirt-gobject/libvirt-gobject-domain-snapshot.c | 4 ++--
libvirt-gobject/libvirt-gobject-domain.c | 2 +-
libvirt-gobject/libvirt-gobject-storage-vol.c | 4 ++--
tests/test-events.c | 8 ++++----
5 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/libvirt-gobject/libvirt-gobject-connection.c
b/libvirt-gobject/libvirt-gobject-connection.c
index 25b4dc1..cf073a5 100644
--- a/libvirt-gobject/libvirt-gobject-connection.c
+++ b/libvirt-gobject/libvirt-gobject-connection.c
@@ -1715,7 +1715,7 @@ GVirConfigCapabilities
*gvir_connection_get_capabilities(GVirConnection *conn,
static void
gvir_connection_get_capabilities_helper(GSimpleAsyncResult *res,
GObject *object,
- GCancellable *cancellable)
+ GCancellable *cancellable G_GNUC_UNUSED)
{
GVirConnection *conn = GVIR_CONNECTION(object);
GError *err = NULL;
diff --git a/libvirt-gobject/libvirt-gobject-domain-snapshot.c
b/libvirt-gobject/libvirt-gobject-domain-snapshot.c
index 0ccce2a..8e71612 100644
--- a/libvirt-gobject/libvirt-gobject-domain-snapshot.c
+++ b/libvirt-gobject/libvirt-gobject-domain-snapshot.c
@@ -241,7 +241,7 @@ gboolean gvir_domain_snapshot_delete (GVirDomainSnapshot *snapshot,
static void _delete_async_thread(GTask *task,
gpointer source_object,
gpointer task_data,
- GCancellable *cancellable)
+ GCancellable *cancellable G_GNUC_UNUSED)
{
GError *error = NULL;
gboolean status;
@@ -369,7 +369,7 @@ gboolean gvir_domain_snapshot_revert_to(GVirDomainSnapshot *snapshot,
static void _revert_to_async_thread(GTask *task,
gpointer source_object,
gpointer task_data,
- GCancellable *cancellable)
+ GCancellable *cancellable G_GNUC_UNUSED)
{
GError *error = NULL;
gboolean status;
diff --git a/libvirt-gobject/libvirt-gobject-domain.c
b/libvirt-gobject/libvirt-gobject-domain.c
index 34b5e38..8df30d7 100644
--- a/libvirt-gobject/libvirt-gobject-domain.c
+++ b/libvirt-gobject/libvirt-gobject-domain.c
@@ -1537,7 +1537,7 @@ gvir_domain_create_snapshot(GVirDomain *dom,
static void _create_snapshot_async_thread(GTask *task,
gpointer source_object,
gpointer task_data,
- GCancellable *cancellable)
+ GCancellable *cancellable G_GNUC_UNUSED)
{
GError *error = NULL;
GVirDomainSnapshot *snapshot;
diff --git a/libvirt-gobject/libvirt-gobject-storage-vol.c
b/libvirt-gobject/libvirt-gobject-storage-vol.c
index 4c0160a..54bb0c2 100644
--- a/libvirt-gobject/libvirt-gobject-storage-vol.c
+++ b/libvirt-gobject/libvirt-gobject-storage-vol.c
@@ -367,7 +367,7 @@ gboolean gvir_storage_vol_download(GVirStorageVol *vol,
GVirStream *stream,
guint64 offset,
guint64 length,
- guint flags,
+ guint flags G_GNUC_UNUSED,
GError **err)
{
virStreamPtr stream_handle = NULL;
@@ -413,7 +413,7 @@ gboolean gvir_storage_vol_upload(GVirStorageVol *vol,
GVirStream *stream,
guint64 offset,
guint64 length,
- guint flags,
+ guint flags G_GNUC_UNUSED,
GError **err)
{
virStreamPtr stream_handle = NULL;
diff --git a/tests/test-events.c b/tests/test-events.c
index ee7ff0b..8afb557 100644
--- a/tests/test-events.c
+++ b/tests/test-events.c
@@ -56,7 +56,7 @@ static gboolean check_destroyed(gpointer user_data)
}
-static void watch_cb(int watch, int fd, int events, void *opaque)
+static void watch_cb(int watch, int fd, int events, void *opaque G_GNUC_UNUSED)
{
g_assert_cmpint(watch_id, !=, -1);
g_assert_cmpint(watch, ==, watch_id);
@@ -66,7 +66,7 @@ static void watch_cb(int watch, int fd, int events, void *opaque)
}
-static gboolean test_watch(gpointer user_data)
+static gboolean test_watch(gpointer user_data G_GNUC_UNUSED)
{
int removal_status;
@@ -113,7 +113,7 @@ static void timeout_destroyed(void *opaque)
}
-static void timeout_cb(int timer, void *opaque)
+static void timeout_cb(int timer, void *opaque G_GNUC_UNUSED)
{
g_assert_cmpint(timeout_id, !=, -1);
g_assert_cmpint(timer, ==, timeout_id);
@@ -122,7 +122,7 @@ static void timeout_cb(int timer, void *opaque)
}
-static gboolean test_timeout(gpointer user_data)
+static gboolean test_timeout(gpointer user_data G_GNUC_UNUSED)
{
int removal_status;
--
2.1.3