Merge branch 'fix-glib-compile-schemas-typo' into 'main'

glib-compile-schemas: Fix typo in comparison function

See merge request GNOME/glib!3188
This commit is contained in:
Simon McVittie 2023-01-09 17:12:12 +00:00
commit cabe1370ed

View File

@ -1870,7 +1870,7 @@ compare_strings (gconstpointer a,
gconstpointer b)
{
const gchar *one = a;
const gchar *two = a;
const gchar *two = b;
gint cmp;
cmp = g_str_has_suffix (two, ".enums.xml") -