summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimm Bäder <mail@baedert.org>2020-04-17 10:20:28 +0200
committerTimm Bäder <mail@baedert.org>2020-06-08 19:17:34 +0200
commit4d658d4c19fb22126b0f848a5b018227747bfd07 (patch)
tree1b47202cb9afd0ac3f9ccfcef9549d2bf75dfdff
parentfd7e209ce6c52a6213fe1438c80709bc39ea6695 (diff)
downloadpango-4d658d4c19fb22126b0f848a5b018227747bfd07.tar.gz
testattributes: Properly free GString
Not needed afterwards.
-rw-r--r--tests/testattributes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testattributes.c b/tests/testattributes.c
index 9964f3d0..eaca6663 100644
--- a/tests/testattributes.c
+++ b/tests/testattributes.c
@@ -100,7 +100,7 @@ assert_attributes (GSList *attrs,
s = g_string_new ("");
print_attributes (attrs, s);
g_assert_cmpstr (s->str, ==, expected);
- g_string_free (s, FALSE);
+ g_string_free (s, TRUE);
}
static void