From 34033a68cee187e1d3d421d941488075d13b479d Mon Sep 17 00:00:00 2001 From: raveit65 Date: Thu, 14 Nov 2013 21:42:27 +0100 Subject: GTK3: fix compile warning 'gtk_target_table_new_from_list' differ in signedness [-Wpointer-sign] --- capplet/gsm-properties-dialog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'capplet') diff --git a/capplet/gsm-properties-dialog.c b/capplet/gsm-properties-dialog.c index 6c5c8e8..c920882 100644 --- a/capplet/gsm-properties-dialog.c +++ b/capplet/gsm-properties-dialog.c @@ -605,7 +605,7 @@ setup_dialog (GsmPropertiesDialog *dialog) if (targetlist != NULL) { #if GTK_CHECK_VERSION (3, 0, 0) GtkTargetEntry *targets; - guint n_targets; + gint n_targets; gint i; targets = gtk_target_table_new_from_list (targetlist, &n_targets); for (i = 0; i < n_targets; i++) -- cgit v1.2.1