summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2023-01-09 17:12:12 +0000
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2023-01-09 17:12:12 +0000
commitcabe1370ed94b3bd9ee451209a99ced56e64e595 (patch)
tree47e645dd49d379651539cf0eb6fe6b10818eebc7
parent8cddffdf6a3f16dd65b7e9ed1192a6f2393ee4aa (diff)
parent9d5bcc94919b7502d41de4d1de3630f47d4abb09 (diff)
downloadglib-cabe1370ed94b3bd9ee451209a99ced56e64e595.tar.gz
Merge branch 'fix-glib-compile-schemas-typo' into 'main'
glib-compile-schemas: Fix typo in comparison function See merge request GNOME/glib!3188
-rw-r--r--gio/glib-compile-schemas.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gio/glib-compile-schemas.c b/gio/glib-compile-schemas.c
index 2352f22df..acabfb6b4 100644
--- a/gio/glib-compile-schemas.c
+++ b/gio/glib-compile-schemas.c
@@ -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") -