summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2019-07-08 10:31:51 -0400
committerPhilip Withnall <withnall@endlessm.com>2019-07-09 09:50:11 +0100
commitcba4a0d2dfdd89b068330341440a1aa9c1f7b922 (patch)
tree4b079efd912e5752193a6e4b4edf920b063543bd
parente43a63726d741844db41a4e064d49982d27f247d (diff)
downloadglib-cba4a0d2dfdd89b068330341440a1aa9c1f7b922.tar.gz
Ensure that the keyfile settings backend exists
We need to bring the type into existence. Closes: https://gitlab.gnome.org/GNOME/glib/issues/1822
-rw-r--r--gio/giomodule.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gio/giomodule.c b/gio/giomodule.c
index b92162dcc..b97e3a26b 100644
--- a/gio/giomodule.c
+++ b/gio/giomodule.c
@@ -1209,6 +1209,7 @@ _g_io_modules_ensure_loaded (void)
/* Initialize types from built-in "modules" */
g_type_ensure (g_null_settings_backend_get_type ());
g_type_ensure (g_memory_settings_backend_get_type ());
+ g_type_ensure (g_keyfile_settings_backend_get_type ());
#if defined(HAVE_INOTIFY_INIT1)
g_type_ensure (g_inotify_file_monitor_get_type ());
#endif