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 static gint
compare_attr (gconstpointer a, gconstpointer b) compare_attr (gconstpointer a, gconstpointer b)
{ {
AtkAttribute *aattr = a; const AtkAttribute *aattr = a;
AtkAttribute *battr = b; const AtkAttribute *battr = b;
return strcmp (aattr->name, battr->name); return strcmp (aattr->name, battr->name);
} }