From: Rico Tzschichholz Date: Mon, 21 Nov 2011 22:06:15 +0000 (+0100) Subject: gio/tests: Fix for -Werror=format-security X-Git-Tag: 2.31.4~157 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=38a00cec67709e5c154398e8cbb8f15a15bed583;p=platform%2Fupstream%2Fglib.git gio/tests: Fix for -Werror=format-security --- diff --git a/gio/tests/test-pipe-unix.c b/gio/tests/test-pipe-unix.c index a3fdba4..f4e07a4 100644 --- a/gio/tests/test-pipe-unix.c +++ b/gio/tests/test-pipe-unix.c @@ -64,7 +64,7 @@ test_pipe (GInputStream **is, int e = errno; g_set_error (error, G_IO_ERROR, g_io_error_from_errno (e), - g_strerror (e)); + "%s", g_strerror (e)); return FALSE; }