summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2018-07-31 07:24:45 +0200
committerBenjamin Otte <otte@redhat.com>2018-07-31 22:34:27 +0200
commit7ce7e5503f791c66ec174ced8c712dcbae50ff01 (patch)
tree3bd0e000be3016bfdeedd91efc624d68c3bb6212
parent0ba307995d231d58c147c3f82e47be5ee0ab5455 (diff)
downloadgtk+-7ce7e5503f791c66ec174ced8c712dcbae50ff01.tar.gz
colorpicker: Fix gcc warning
-rw-r--r--gtk/gtkcolorpicker.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkcolorpicker.c b/gtk/gtkcolorpicker.c
index d57ffe016e..16055e144c 100644
--- a/gtk/gtkcolorpicker.c
+++ b/gtk/gtkcolorpicker.c
@@ -59,7 +59,7 @@ gtk_color_picker_new (void)
picker = gtk_color_picker_shell_new ();
if (picker)
- g_debug ("Using %s for picking colors", g_type_name_from_instance (picker));
+ g_debug ("Using %s for picking colors", G_OBJECT_TYPE_NAME (picker));
else
g_debug ("No suitable GtkColorPicker implementation\n");