blob: e9aebb853e1f6e2fd76bdd53e5615e5c174c761a [file] [log] [blame]
Brad Bishop6e60e8b2018-02-01 10:27:11 -05001From b75879e8c3e24d338c0e5843d616bc9b02da4d04 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Sat, 26 Aug 2017 09:52:17 -0700
4Subject: [PATCH] bonobo-ui-node: qualify functions with G_GNUC_PRINTF
5
6This helps compiler in doing format checking correctly
7Fixes
8bonobo-ui-node.c:864:38: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
9| g_logv ("XML", G_LOG_LEVEL_ERROR, msg, args);
10
11Signed-off-by: Khem Raj <raj.khem@gmail.com>
12---
13 bonobo/bonobo-ui-node.c | 6 +++---
14 1 file changed, 3 insertions(+), 3 deletions(-)
15
16diff --git a/bonobo/bonobo-ui-node.c b/bonobo/bonobo-ui-node.c
17index 9bab5e5..6ec66e2 100644
18--- a/bonobo/bonobo-ui-node.c
19+++ b/bonobo/bonobo-ui-node.c
20@@ -835,7 +835,7 @@ uiCharacters (ParseState *ps, const xmlChar *chars, int len)
21 g_string_append_len (ps->content, chars, len);
22 }
23
24-static void
25+static G_GNUC_PRINTF(2, 3) void
26 uiWarning (ParseState *ps, const char *msg, ...)
27 {
28 va_list args;
29@@ -845,7 +845,7 @@ uiWarning (ParseState *ps, const char *msg, ...)
30 va_end (args);
31 }
32
33-static void
34+static G_GNUC_PRINTF(2, 3) void
35 uiError (ParseState *ps, const char *msg, ...)
36 {
37 va_list args;
38@@ -855,7 +855,7 @@ uiError (ParseState *ps, const char *msg, ...)
39 va_end (args);
40 }
41
42-static void
43+static G_GNUC_PRINTF(2, 3) void
44 uiFatalError (ParseState *ps, const char *msg, ...)
45 {
46 va_list args;
47--
482.14.1
49