blob: 6118b679a5ba1c865d8ad307a18b32456e93d0db [file] [log] [blame]
Brad Bishop6e60e8b2018-02-01 10:27:11 -05001From 0781b218beb8ba160ea223ff3d74a4fa2abf86fa Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Thu, 13 Apr 2017 16:21:14 -0700
4Subject: [PATCH] test-widget.c: fix non-literal format string issues
5
6clang errors out when using -Werror=format-nonliteral
7since the definition of g_strdup_vprintf() from glib-2.0
8is using va_list and clang seems to still warn where as
9gcc doesn't do that for va_list arguments
10
11Signed-off-by: Khem Raj <raj.khem@gmail.com>
12---
13 tests/test-widget.c | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16diff --git a/tests/test-widget.c b/tests/test-widget.c
17index 46f5f4e..3f2e60f 100644
18--- a/tests/test-widget.c
19+++ b/tests/test-widget.c
20@@ -260,7 +260,7 @@ static const gchar *buffer_ui_description =
21
22 /* File loading code ----------------------------------------------------------------- */
23
24-static void
25+static void G_GNUC_PRINTF (2, 0)
26 error_dialog (GtkWindow *parent, const gchar *msg, ...)
27 {
28 va_list ap;
29--
302.12.2
31