From 6e05f78f12154dd48e0498e3d62f47cd9b5cc712 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Mon, 14 Nov 2011 15:26:45 -0500 Subject: [PATCH] core: Fix build with glib 2.30 --- ostree/ot-builtin-remote.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ostree/ot-builtin-remote.c b/ostree/ot-builtin-remote.c index 7bb39fb5..f9d4a2ce 100644 --- a/ostree/ot-builtin-remote.c +++ b/ostree/ot-builtin-remote.c @@ -97,7 +97,7 @@ ostree_builtin_remote (int argc, char **argv, const char *repo_path, GError **er if (context) g_option_context_free (context); if (config) - g_key_file_unref (config); + g_key_file_free (config); g_clear_object (&repo); g_clear_object (&checkout); return ret;