From 598c3d233a560c10133b9a8a426ae87288a98584 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Thu, 21 Jun 2012 12:06:34 -0400 Subject: [PATCH] tests: Add missing initializer for return value --- gio/tests/test-pipe-unix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gio/tests/test-pipe-unix.c b/gio/tests/test-pipe-unix.c index f4e07a420..07f6198a9 100644 --- a/gio/tests/test-pipe-unix.c +++ b/gio/tests/test-pipe-unix.c @@ -105,7 +105,7 @@ test_bidi_pipe (GIOStream **left, GOutputStream *left_out = NULL; GInputStream *right_in = NULL; GOutputStream *right_out = NULL; - gboolean ret; + gboolean ret = FALSE; if (!test_pipe (&left_in, &right_out, error)) goto out;