From 38a00cec67709e5c154398e8cbb8f15a15bed583 Mon Sep 17 00:00:00 2001 From: Rico Tzschichholz Date: Mon, 21 Nov 2011 23:06:15 +0100 Subject: [PATCH] gio/tests: Fix for -Werror=format-security --- 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 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; } -- 2.7.4