See if this squelches some compiler warnings.

svn path=/trunk/; revision=37670
This commit is contained in:
Guy Harris 2011-06-15 19:27:01 +00:00
parent f783d2d904
commit cdd23c3bd0
1 changed files with 2 additions and 2 deletions

View File

@ -193,8 +193,8 @@ struct string_elem {
static gint
string_compare(gconstpointer a, gconstpointer b)
{
return strcmp(((struct string_elem *)a)->sstr,
((struct string_elem *)b)->sstr);
return strcmp(((const struct string_elem *)a)->sstr,
((const struct string_elem *)b)->sstr);
}
static void