diff options
author | Kalev Lember <klember@redhat.com> | 2015-09-08 14:37:58 +0200 |
---|---|---|
committer | Kalev Lember <klember@redhat.com> | 2015-09-08 14:37:58 +0200 |
commit | 96237c0798aab742311ee78b7d5a1fc295e30ad1 (patch) | |
tree | 0070876fb2e9139e7ec6a283872cf986fed944dd /client | |
parent | 6ef00b04680e3bfb8923158f7ffef3de8d9b09ef (diff) | |
download | appstream-glib-96237c0798aab742311ee78b7d5a1fc295e30ad1.tar.gz |
trivial: Fix the build
Keep on using _cleanup_object_unref_ for SoupSession until
https://bugzilla.gnome.org/show_bug.cgi?id=754721 is upstreamed.
Diffstat (limited to 'client')
-rw-r--r-- | client/as-util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/as-util.c b/client/as-util.c index db02ec5..c8a5aaf 100644 --- a/client/as-util.c +++ b/client/as-util.c @@ -3071,7 +3071,7 @@ as_util_mirror_screenshots_app_url (AsUtilPrivate *priv, g_autoptr(AsImage) im = NULL; g_autoptr(AsScreenshot) ss = NULL; _cleanup_object_unref_ SoupMessage *msg = NULL; - g_autoptr(SoupSession) session = NULL; + _cleanup_object_unref_ SoupSession *session = NULL; /* fonts screenshots are auto-generated */ if (as_app_get_id_kind (app) == AS_ID_KIND_FONT) { |