diff options
author | Timm Bäder <mail@baedert.org> | 2020-04-17 10:20:28 +0200 |
---|---|---|
committer | Timm Bäder <mail@baedert.org> | 2020-06-08 19:17:34 +0200 |
commit | 4d658d4c19fb22126b0f848a5b018227747bfd07 (patch) | |
tree | 1b47202cb9afd0ac3f9ccfcef9549d2bf75dfdff /tests/testattributes.c | |
parent | fd7e209ce6c52a6213fe1438c80709bc39ea6695 (diff) | |
download | pango-4d658d4c19fb22126b0f848a5b018227747bfd07.tar.gz |
testattributes: Properly free GString
Not needed afterwards.
Diffstat (limited to 'tests/testattributes.c')
-rw-r--r-- | tests/testattributes.c | 2 |
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 |