From 4ca42d978557c3a15207eed7f9a06ad3870c7806 Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Wed, 29 Jun 2011 18:00:37 +0200 Subject: [PATCH] tests: Fix compiler warnings --- tests/a11y/accessibility-dump.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/a11y/accessibility-dump.c b/tests/a11y/accessibility-dump.c index f6737ec4b4..1a1c21379c 100644 --- a/tests/a11y/accessibility-dump.c +++ b/tests/a11y/accessibility-dump.c @@ -235,8 +235,8 @@ dump_attribute_set (GString *string, static gint compare_attr (gconstpointer a, gconstpointer b) { - AtkAttribute *aattr = a; - AtkAttribute *battr = b; + const AtkAttribute *aattr = a; + const AtkAttribute *battr = b; return strcmp (aattr->name, battr->name); }