From e4e20f8d02c36336c5a705c500a88175e4aad33e Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Mon, 25 Jan 2010 12:47:02 +0000 Subject: in bindings/ghashtable.h, Add missing unused argument hints --- bindings/ghashtable.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bindings/ghashtable.h b/bindings/ghashtable.h index aa136fd5..aaf1916c 100644 --- a/bindings/ghashtable.h +++ b/bindings/ghashtable.h @@ -26,7 +26,8 @@ struct _GHashTable /* Helper functions to access JNI interface functions */ #if (GLIB_MAJOR_VERSION == 2 && GLIB_MINOR_VERSION < 12) -static gboolean return_true(gpointer a, gpointer b, gpointer c) +static gboolean return_true(G_GNUC_UNUSED gpointer a, G_GNUC_UNUSED gpointer b, + G_GNUC_UNUSED gpointer c) { return TRUE; } -- cgit