summaryrefslogtreecommitdiff
path: root/src/libostree/ostree-rollsum.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2015-05-05 11:44:40 -0400
committerMatthew Barnes <mbarnes@redhat.com>2015-05-06 22:07:10 -0400
commitbb231fdf74ff81a39f82c0ccda058b2779e18e99 (patch)
tree251e82668c299faaf8087679779ebfb6eb7bdeac /src/libostree/ostree-rollsum.c
parent196d983af930c665bbb385f59f6480b1032fd6bb (diff)
downloadostree-bb231fdf74ff81a39f82c0ccda058b2779e18e99.tar.gz
Use g_autoptr(GPtrArray) instead of gs_unref_ptrarray
Diffstat (limited to 'src/libostree/ostree-rollsum.c')
-rw-r--r--src/libostree/ostree-rollsum.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libostree/ostree-rollsum.c b/src/libostree/ostree-rollsum.c
index 17830f5b..5efb193d 100644
--- a/src/libostree/ostree-rollsum.c
+++ b/src/libostree/ostree-rollsum.c
@@ -114,7 +114,7 @@ _ostree_compute_rollsum_matches (GBytes *from,
OstreeRollsumMatches *ret_rollsum = NULL;
g_autoptr(GHashTable) from_rollsum = NULL;
g_autoptr(GHashTable) to_rollsum = NULL;
- gs_unref_ptrarray GPtrArray *matches = NULL;
+ g_autoptr(GPtrArray) matches = NULL;
const guint8 *from_buf;
gsize from_len;
const guint8 *to_buf;