tests: Fix compiler warnings

This commit is contained in:
Benjamin Otte
2011-06-29 18:00:37 +02:00
committed by Matthias Clasen
parent 3ea8cfc02f
commit 4ca42d9785

View File

@ -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);
}