summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2012-06-21 12:05:39 -0400
committerColin Walters <walters@verbum.org>2012-06-21 12:05:39 -0400
commit8df83706fa032f44765526647b8c5176174a0ede (patch)
treed7255b9623c6aeacb235d09fb9d4d709779c658f
parentdd06327e25f6c801f8e9584da616a722db766c14 (diff)
downloadglib-8df83706fa032f44765526647b8c5176174a0ede.tar.gz
tests: Add missing va_end()
-rw-r--r--gio/tests/gapplication.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gio/tests/gapplication.c b/gio/tests/gapplication.c
index b7138cfba..2e0ea9d01 100644
--- a/gio/tests/gapplication.c
+++ b/gio/tests/gapplication.c
@@ -70,6 +70,8 @@ spawn (const gchar *expected_stdout,
g_ptr_array_add (array, NULL);
args = (gchar **) g_ptr_array_free (array, FALSE);
+ va_end (ap);
+
data = g_slice_new (ChildData);
data->expected_stdout = expected_stdout;